List of usage examples for javax.jms MessageListener interface-usage
From source file org.okj.commons.broker.SimpleMessageSubscriber.java
/** * ??? * @author Administrator * @version $Id: SimpleMessageSubscriber.java, v 0.1 2013-1-30 ?11:13:16 Administrator Exp $ */ public class SimpleMessageSubscriber implements MessageListener, InitializingBean, DisposableBean {
From source file org.hawkular.apm.processor.alerts.TraceCompletionAlertsPublisherMDB.java
/** * @author Juraci Paixo Krhling */ @MessageDriven(name = "TraceCompletions_Alerts", messageListenerInterface = MessageListener.class, activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"), @ActivationConfigProperty(propertyName = "destination", propertyValue = "TraceCompletions"),
From source file com.solveapuzzle.mapping.agnostic.JmsMessageListener.java
/**
* Consumes messages from a JMS queue.
*
* @author David Winterfeldt
*/
@Component
From source file org.hawkular.apm.processor.alerts.InvocationAlertsPublisherMDB.java
/** * @author Juraci Paixo Krhling */ @MessageDriven(name = "NodeDetails_Alerts", messageListenerInterface = MessageListener.class, activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"), @ActivationConfigProperty(propertyName = "destination", propertyValue = "NodeDetails"),
From source file org.jbpm.bpel.tutorial.purchase.ejb.InvoiceCallbackMessageBean.java
/**
* Asynchronous invoice callback bean.
* @author Jeff DeLong
* @author Alejandro Guizar
* @version $Revision$ $Date: 2007/11/29 10:31:47 $
*/
From source file org.jbpm.bpel.tutorial.purchase.ejb.ShippingCallbackMessageBean.java
/**
* Asynchronous shipping callback bean.
* @author Jeff DeLong
* @author Alejandro Guizar
* @version $Revision$ $Date: 2007/11/29 10:31:47 $
*/
From source file com.jim.im.broker.config.ImBrokerMessageListener.java
/** * @version 1.0 */ public class ImBrokerMessageListener implements MessageListener { private static final Logger LOGGER = LoggerFactory.getLogger(ImBrokerMessageListener.class); private Server mqttServer;
From source file com.provenance.cloudprovenance.connector.policy.PolicyEventConsumer.java
/**
* This class listens for incoming JMS message as a policy request for a
* service. It then invokes relevant URI for the request to be processed. Once a
* response is received, the response is sent to another JMS queue for the
* client to read from.
*
From source file com.roncoo.pay.app.polling.listener.PollingMessageListener.java
/** * * @author wujing */ public class PollingMessageListener implements MessageListener { private static final Log log = LogFactory.getLog(PollingMessageListener.class);
From source file pl.psnc.synat.wrdz.ms.messages.CertificateMessageBean.java
/** * Message-driven bean that reads format risk notifications from MDZ and persists them in the MS database. */ @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"), @ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge") })