Example usage for javax.jms MessageListener interface-usage

List of usage examples for javax.jms MessageListener interface-usage

Introduction

In this page you can find the example usage for javax.jms MessageListener interface-usage.

Usage

From source file org.chtijbug.drools.platform.backend.jms.JMSHistoryEventListener.java

@Component("simpleMessageListener")
public class JMSHistoryEventListener implements MessageListener {

    private static final Logger LOG = Logger.getLogger(JMSHistoryEventListener.class);

    @Autowired

From source file org.wso2.carbon.automation.extensions.servers.jmsserver.client.JMSTopicMessageConsumer.java

public class JMSTopicMessageConsumer implements MessageListener {
    private static final Log log = LogFactory.getLog(JMSTopicMessageConsumer.class);
    private TopicConnection connection = null;
    private TopicSession session = null;
    private TopicConnectionFactory connectionFactory = null;
    private Topic topic = null;

From source file org.hoteia.qalingo.core.jms.document.listener.DocumentQueueListener.java

@Component(value = "documentQueueListener")
public class DocumentQueueListener implements MessageListener, ExceptionListener {

    protected final Log logger = LogFactory.getLog(getClass());

    @Autowired

From source file ProducerAndConsumerTool.java

/**
 * A simple tool for producing and consuming messages
 * 
 * 
 */
public class ProducerAndConsumerTool extends ConsumerTool implements MessageListener {

From source file nz.net.orcon.kanban.automation.JmsEventListener.java

public class JmsEventListener implements MessageListener {

    private static final Logger logger = LoggerFactory.getLogger(JmsEventListener.class);

    @Autowired
    AutomationEngine automationEngine;

From source file org.wso2.carbon.event.input.adapter.jms.internal.util.JMSMessageListener.java

public class JMSMessageListener implements MessageListener {
    private static final Log log = LogFactory.getLog(JMSMessageListener.class);
    private InputEventAdapterListener eventAdaptorListener = null;
    private final int tenantId;
    private final String tenantDomain;

From source file be.anova.courses.activemq.Application.java

public class Application implements MessageListener {

    public static void main(String[] args) throws JMSException {
        ApplicationContext context = new ClassPathXmlApplicationContext("context.xml");
    }

From source file com.actionbazaar.email.EmailService.java

/**
 * Message driven bean that handles blasting out emails.
 * @author Ryan Cuprak
 */
@MessageDriven(mappedName = "jms/emailQueue", activationConfig = {
        @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),

From source file org.sofun.platform.facebook.async.FacebookGraphListener.java

/**
 * @author <a href="mailto:julien@anguenot.org">Julien Anguenot</a>
 * 
 */
@MessageDriven(activationConfig = {
        @ActivationConfigProperty(propertyName = "destinationType", propertyValue = SofunMessagingDestination.DESTINATION_TYPE),

From source file com.jaliansystems.activeMQLite.impl.RepositoryService.java

/**
 * The Class RepositoryService.
 * 
 * Implements the protocol required to access object repository 
 */
public class RepositoryService implements MessageListener {