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 edu.harvard.i2b2.crc.ejb.QuerySmallExecutorMDB.java

/**
 * This class is the message driven bean to handle UploadMessages 
 * on the queue and handing them to the Upload coordinator.
 * 
 * @author rkuttan
 * 

From source file net.blogracy.services.SeedService.java

/**
 * ...
 */
public class SeedService implements MessageListener {

    private PluginInterface plugin;

From source file edu.harvard.i2b2.crc.ejb.QueryLargeExecutorMDB.java

/**
 * This class is the message driven bean to handle UploadMessages 
 * on the queue and handing them to the Upload coordinator.
 * 
 * @author rkuttan
 * 

From source file edu.harvard.i2b2.crc.ejb.QueryMediumExecutorMDB.java

/**
 * This class is the message driven bean to handle UploadMessages 
 * on the queue and handing them to the Upload coordinator.
 * 
 * @author rkuttan
 * 

From source file org.sample.send.receive.MessageReceiverAsync.java

/**
 * @author Arun Gupta
 */
@MessageDriven(mappedName = "java:global/jms/myAsyncQueue")
public class MessageReceiverAsync implements MessageListener {

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

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

From source file com.chinamobile.bcbsp.comm.ConsumerTool.java

/**
 * Consumer tool for receiving messages from Message Queue.
 */
public class ConsumerTool extends Thread implements MessageListener, ExceptionListener {
    /** class logger. */
    private static final Log LOG = LogFactory.getLog(ConsumerTool.class);

From source file org.logicblaze.lingo.jms.JmsServiceExporterMessageListener.java

/**
 * A JMS MessageListener that exports the specified service bean as a JMS
 * service endpoint, accessible via a JMS proxy. <p/>
 * <p>
 * Note: JMS services exported with this class can be accessed by any JMS
 * client, as there isn't any special handling involved.

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

/**
 *
 * @author Deni Husni FR
 */
public class JadwalKerjaMassMessagesListener extends IServiceImpl implements MessageListener {

From source file Talk.java

public class Talk implements javax.jms.MessageListener {
    private static final String DEFAULT_BROKER_NAME = "tcp://localhost:61616";
    private static final String DEFAULT_PASSWORD = "password";
    private static final int MESSAGE_LIFESPAN = 1800000; // milliseconds (30 minutes)

    private javax.jms.Connection connect = null;