| Modifier and Type | Method and Description |
|---|---|
JMSConsumer |
JMSContext.createConsumer(Destination destination)
Creates a
JMSConsumer for the specified destination. |
JMSConsumer |
JMSContext.createConsumer(Destination destination,
String messageSelector)
Creates a
JMSConsumer for the specified destination, using a
message selector. |
JMSConsumer |
JMSContext.createConsumer(Destination destination,
String messageSelector,
boolean noLocal)
Creates a
JMSConsumer for the specified destination,
specifying a message selector and the noLocal parameter. |
JMSConsumer |
JMSContext.createDurableConsumer(Topic topic,
String name)
Creates a durable subscription with the specified name on the specified
topic, and creates a
JMSConsumer on that durable
subscription. |
JMSConsumer |
JMSContext.createDurableConsumer(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates a durable subscription with the specified name on the specified
topic, specifying a message selector and the
noLocal
parameter, and creates a JMSConsumer on that durable
subscription. |
JMSConsumer |
JMSContext.createSharedConsumer(Topic topic,
String sharedSubscriptionName)
Creates a shared non-durable subscription with the specified name on the
specified topic, and creates a
JMSConsumer on that
subscription. |
JMSConsumer |
JMSContext.createSharedConsumer(Topic topic,
String sharedSubscriptionName,
String messageSelector)
Creates a shared non-durable subscription with the specified name on the
specified topic, specifying a message selector, and creates a
JMSConsumer on that subscription |
JMSConsumer |
JMSContext.createSharedConsumer(Topic topic,
String sharedSubscriptionName,
String messageSelector,
boolean noLocal)
Creates a shared non-durable subscription with the specified name on the
specified topic, specifying a message selector and the
noLocal parameter, and creates a JMSConsumer on
that subscription. |
Copyright © 2012. All Rights Reserved.