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 uk.co.jassoft.markets.crawler.CrawlerListener.java

/**
 *
 * @author Jonny
 */
@Component
@Service

From source file dk.netarkivet.harvester.distribute.HarvesterMessageHandler.java

/**
 * This default message handler shields of all unimplemented methods from the
 * HarvesterMessageVisitor interface.
 *
 * Classes should not implement HarvesterMessageVisitor but extend this class.
 *

From source file com.inkubator.hrm.service.impl.ApprovalActivityNotSendListenerServiceImpl.java

/**
 *
 * @author Deni Husni FR
 */
public class ApprovalActivityNotSendListenerServiceImpl extends BaseSchedulerDinamicListenerImpl
        implements MessageListener {

From source file it.cnr.isti.labse.glimpse.manager.GlimpseManager.java

public class GlimpseManager extends Thread implements MessageListener {

    private TopicConnection connection;
    private TopicSession publishSession;
    private TopicPublisher tPub;
    private Topic connectionTopic;

From source file DurableChat.java

public class DurableChat implements javax.jms.MessageListener // to handle message subscriptions
{
    private static final String APP_TOPIC = "jms.samples.durablechat";
    private static final String DEFAULT_BROKER_NAME = "tcp://localhost:61616";
    private static final String DEFAULT_PASSWORD = "password";
    private static final long MESSAGE_LIFESPAN = 1800000; //30 minutes

From source file com.oneops.controller.jms.CmsListener.java

/**
 * The listener interface for receiving cms events. The class that is interested in processing a cms
 * event implements this interface, and the object created with that class is registered with a
 * component using the component's <code>addCmsListener<code> method. When the cms event occurs,
 * that object's appropriate method is invoked.
 *

From source file eu.learnpad.simulator.mon.manager.GlimpseManager.java

public class GlimpseManager extends Thread implements MessageListener {

    private TopicConnection connection;
    private TopicSession publishSession;
    private TopicPublisher tPub;
    private Topic connectionTopic;

From source file HierarchicalChat.java

public class HierarchicalChat implements javax.jms.MessageListener {
    private static final String DEFAULT_PUBLISHER_TOPIC = "jms.samples.hierarchicalchat";
    private static final String DEFAULT_SUBSCRIBER_TOPIC = "jms.samples.*";
    private static final String DEFAULT_SUBSCRIBER_ROOT = "jms.samples";
    private static final String DEFAULT_BROKER_NAME = "tcp://localhost:61616";

From source file it.cnr.isti.labse.glimpse.impl.ComplexEventProcessorImpl.java

public class ComplexEventProcessorImpl extends ComplexEventProcessor implements MessageListener {

    private String topic;
    private TopicConnection connection;
    private Topic connectionTopic;
    private TopicSession publishSession;

From source file dk.netarkivet.harvester.scheduler.HarvestSchedulerMonitorServer.java

/**
 * Submitted harvesting jobs are registered with this singleton. The class
 * listens for CrawlStatusMessages on the THE_SCHED queue and processes
 * completed harvests.
 *
 */