ConnectionConsumer |
TopicConnection.createConnectionConsumer(Topic topic,
java.lang.String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Creates a connection consumer for this connection (optional operation).
|
ConnectionConsumer |
Connection.createDurableConnectionConsumer(Topic topic,
java.lang.String subscriptionName,
java.lang.String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Create a durable connection consumer for this connection (optional operation).
|
ConnectionConsumer |
TopicConnection.createDurableConnectionConsumer(Topic topic,
java.lang.String subscriptionName,
java.lang.String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Create a durable connection consumer for this connection (optional operation).
|
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
java.lang.String name) |
Creates a durable subscriber to the specified topic.
|
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
java.lang.String name,
java.lang.String messageSelector,
boolean noLocal) |
Creates a durable subscriber to the specified topic, using a
message selector and specifying whether messages published by its
own connection should be delivered to it.
|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
java.lang.String name) |
Creates a durable subscriber to the specified topic.
|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
java.lang.String name,
java.lang.String messageSelector,
boolean noLocal) |
Creates a durable subscriber to the specified topic, using a
message selector or specifying whether messages published by its
own connection should be delivered to it.
|
TopicPublisher |
TopicSession.createPublisher(Topic topic) |
Creates a publisher for the specified topic.
|
TopicSubscriber |
TopicSession.createSubscriber(Topic topic) |
Creates a nondurable subscriber to the specified topic.
|
TopicSubscriber |
TopicSession.createSubscriber(Topic topic,
java.lang.String messageSelector,
boolean noLocal) |
Creates a nondurable subscriber to the specified topic, using a
message selector or specifying whether messages published by its
own connection should be delivered to it.
|
void |
TopicPublisher.publish(Topic topic,
Message message) |
Publishes a message to a topic for an unidentified message producer.
|
void |
TopicPublisher.publish(Topic topic,
Message message,
int deliveryMode,
int priority,
long timeToLive) |
Publishes a message to a topic for an unidentified message
producer, specifying delivery mode, priority and time to live.
|