JmsActivation activation = new JmsActivation(this, endpointFactory, (JmsActivationSpec) spec); activations.put(spec, activation); activation.start();
JmsActivation activation = (JmsActivation) activations.remove(spec); if (activation != null) activation.stop();
Get the work managerreturnthe work manager return ctx.getWorkManager();
return ctx.getWorkManager();
// TODO getXAResources return null;
this.ctx = ctx;
for (Iterator i = activations.entrySet().iterator(); i.hasNext();) { Map.Entry entry = (Map.Entry) i.next(); try { JmsActivation activation = (JmsActivation) entry.getValue(); if (activation != null) activation.stop(); } catch (Exception ignored) { log.debug("Ignored", ignored); } i.remove(); }