|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Topic in javax.jms |
Subinterfaces of Topic in javax.jms | |
interface |
TemporaryTopic
A TemporaryTopic object is a unique Topic object
created for the duration of a Connection . |
Methods in javax.jms that return Topic | |
javax.jms.Topic |
Session.createTopic(String topicName)
Creates a topic identity given a Topic name.
|
javax.jms.Topic |
TopicPublisher.getTopic()
Gets the topic associated with this TopicPublisher . |
javax.jms.Topic |
TopicSession.createTopic(String topicName)
Creates a topic identity given a Topic name.
|
javax.jms.Topic |
TopicSubscriber.getTopic()
Gets the Topic associated with this subscriber. |
Methods in javax.jms with parameters of type Topic | |
javax.jms.ConnectionConsumer |
Connection.createDurableConnectionConsumer(javax.jms.Topic topic,
String subscriptionName,
String messageSelector,
javax.jms.ServerSessionPool sessionPool,
int maxMessages)
Create a durable connection consumer for this connection (optional operation). |
javax.jms.TopicSubscriber |
Session.createDurableSubscriber(javax.jms.Topic topic,
String name)
Creates a durable subscriber to the specified topic. |
javax.jms.TopicSubscriber |
Session.createDurableSubscriber(javax.jms.Topic topic,
String name,
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. |
javax.jms.ConnectionConsumer |
TopicConnection.createConnectionConsumer(javax.jms.Topic topic,
String messageSelector,
javax.jms.ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation). |
javax.jms.ConnectionConsumer |
TopicConnection.createDurableConnectionConsumer(javax.jms.Topic topic,
String subscriptionName,
String messageSelector,
javax.jms.ServerSessionPool sessionPool,
int maxMessages)
Create a durable connection consumer for this connection (optional operation). |
void |
TopicPublisher.publish(javax.jms.Topic topic,
javax.jms.Message message)
Publishes a message to a topic for an unidentified message producer. |
void |
TopicPublisher.publish(javax.jms.Topic topic,
javax.jms.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. |
javax.jms.TopicSubscriber |
TopicSession.createSubscriber(javax.jms.Topic topic)
Creates a nondurable subscriber to the specified topic. |
javax.jms.TopicSubscriber |
TopicSession.createSubscriber(javax.jms.Topic topic,
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. |
javax.jms.TopicSubscriber |
TopicSession.createDurableSubscriber(javax.jms.Topic topic,
String name)
Creates a durable subscriber to the specified topic. |
javax.jms.TopicSubscriber |
TopicSession.createDurableSubscriber(javax.jms.Topic topic,
String name,
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. |
javax.jms.TopicPublisher |
TopicSession.createPublisher(javax.jms.Topic topic)
Creates a publisher for the specified topic. |
Constructors in javax.jms with parameters of type Topic | |
TopicRequestor(javax.jms.TopicSession session,
javax.jms.Topic topic)
Constructor for the TopicRequestor class.
|
|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |