MessageConsumer |
Session.createConsumer(Destination destination) |
Creates a MessageConsumer for the specified destination.
|
MessageConsumer |
Session.createConsumer(Destination destination,
java.lang.String messageSelector) |
Creates a MessageConsumer for the specified destination,
using a message selector.
|
MessageConsumer |
Session.createConsumer(Destination destination,
java.lang.String messageSelector,
boolean noLocal) |
Creates a MessageConsumer for the specified destination, specifying a
message selector and the noLocal parameter.
|
MessageConsumer |
Session.createDurableConsumer(Topic topic,
java.lang.String name) |
Creates an unshared durable subscription on the specified topic (if one
does not already exist) and creates a consumer on that durable
subscription.
|
MessageConsumer |
Session.createDurableConsumer(Topic topic,
java.lang.String name,
java.lang.String messageSelector,
boolean noLocal) |
Creates an unshared durable subscription on the specified topic (if one
does not already exist), specifying a message selector and the
noLocal parameter, and creates a consumer on that durable
subscription.
|
MessageConsumer |
Session.createSharedConsumer(Topic topic,
java.lang.String sharedSubscriptionName) |
Creates a shared non-durable subscription with the specified name on the
specified topic (if one does not already exist) and creates a consumer on
that subscription.
|
MessageConsumer |
Session.createSharedConsumer(Topic topic,
java.lang.String sharedSubscriptionName,
java.lang.String messageSelector) |
Creates a shared non-durable subscription with the specified name on the
specified topic (if one does not already exist) specifying a message selector,
and creates a consumer on that subscription.
|
MessageConsumer |
Session.createSharedDurableConsumer(Topic topic,
java.lang.String name) |
Creates a shared durable subscription on the specified topic (if one does
not already exist), specifying a message selector and the noLocal
parameter, and creates a consumer on that durable subscription.
|
MessageConsumer |
Session.createSharedDurableConsumer(Topic topic,
java.lang.String name,
java.lang.String messageSelector) |
Creates a shared durable subscription on the specified topic (if one
does not already exist), specifying a message selector,
and creates a consumer on that durable subscription.
|