List of usage examples for javax.jms MessageListener interface-usage
From source file de.fzi.ALERT.actor.MessageObserver.PatternObserver.JMSPatternListener.java
public class JMSPatternListener implements MessageListener { private JMSPatternParser parser; private JMSMessageManager manager; @Autowired public void setJMSPatternParser(JMSPatternParser jmsPatternParser) {
From source file de.fzi.ALERT.actor.MessageObserver.NotificationObserver.JMSNotificationListener.java
@Service public class JMSNotificationListener implements MessageListener { /* * define the parser as a service */
From source file org.bpmscript.audit.jms.JmsAuditMessageListener.java
/** * Listens for Audit messages from JMS and then records them. */ public class JmsAuditMessageListener implements MessageListener { private MessageConverter converter;
From source file com.fusesource.forge.jmstest.tests.AsyncConsumer.java
public class AsyncConsumer extends AsyncClient implements MessageListener { private final static Log LOG = LogFactory.getLog(AsyncConsumer.class); private AtomicLong receiveCount = null; private Session session = null;
From source file com.oneops.search.listener.SearchListener.java
import org.springframework.context.support.ClassPathXmlApplicationContext; import com.oneops.search.msg.processor.MessageProcessor; /** *
From source file ru.anr.base.facade.ejb.mdb.AbstractMessageDrivenHandler.java
/**
* Base implementation for JMS Handler. Performs conversion from JMS message to
* some domain object from Spring ({@link org.springframework.messaging.Message}
* ).
*
* @author Alexey Romanchuk
From source file org.calrissian.mango.jms.stream.utils.MessageQueueListener.java
/**
* As messages come in they are queued
* Class MessageQueueListener
* Date: Dec 10, 2011
* Time: 2:09:54 PM
*/
From source file com.jim.im.message.config.ImMessageListener.java
/** * @version 1.0 */ @Component public class ImMessageListener implements MessageListener { private static final Logger LOGGER = LoggerFactory.getLogger(ImMessageListener.class);
From source file org.hawkular.apm.processor.alerts.FragmentCompletionTimeAlertsPublisherMDB.java
/** * @author Juraci Paixo Krhling */ @MessageDriven(name = "FragmentCompletionTimes_Alerts", messageListenerInterface = MessageListener.class, activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"), @ActivationConfigProperty(propertyName = "destination", propertyValue = "FragmentCompletionTimes"),
From source file org.hawkular.apm.processor.alerts.TraceCompletionTimeAlertsPublisherMDB.java
/** * @author Juraci Paixo Krhling */ @MessageDriven(name = "TraceCompletionTimes_Alerts", messageListenerInterface = MessageListener.class, activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"), @ActivationConfigProperty(propertyName = "destination", propertyValue = "TraceCompletionTimes"),