Uses of Interface
javax.jms.Topic

Packages that use Topic
javax.jms   
 

Uses of Topic in javax.jms
 

Subinterfaces of Topic in javax.jms
 interface TemporaryTopic
          A TemporaryTopic is a unique Topic object created for the duration of a TopicConnection.
 

Fields in javax.jms declared as Topic
(package private)  Topic TopicRequestor.topic
           
 

Methods in javax.jms that return Topic
 Topic TopicSession.createTopic(String topicName)
          Create a topic identity given a Topic name.
 Topic TopicSubscriber.getTopic()
          Get the topic associated with this subscriber.
 Topic TopicPublisher.getTopic()
          Get the topic associated with this publisher.
 

Methods in javax.jms with parameters of type Topic
 TopicSubscriber TopicSession.createSubscriber(Topic topic)
          Create a non-durable Subscriber to the specified topic.
 TopicSubscriber TopicSession.createSubscriber(Topic topic, String messageSelector, boolean noLocal)
          Create a non-durable Subscriber to the specified topic.
 TopicSubscriber TopicSession.createDurableSubscriber(Topic topic, String name)
          Create a durable Subscriber to the specified topic.
 TopicSubscriber TopicSession.createDurableSubscriber(Topic topic, String name, String messageSelector, boolean noLocal)
          Create a durable Subscriber to the specified topic.
 TopicPublisher TopicSession.createPublisher(Topic topic)
          Create a Publisher for the specified topic.
 void TopicPublisher.publish(Topic topic, Message message)
          Publish a Message to a topic for an unidentified message producer.
 void TopicPublisher.publish(Topic topic, Message message, int deliveryMode, int priority, long timeToLive)
          Publish a Message to a topic for an unidentified message producer, specifying delivery mode, priority and time to live.
 ConnectionConsumer TopicConnection.createConnectionConsumer(Topic topic, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
          Create a connection consumer for this connection (optional operation).
 ConnectionConsumer TopicConnection.createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
          Create a durable connection consumer for this connection (optional operation).
 

Constructors in javax.jms with parameters of type Topic
TopicRequestor(TopicSession session, Topic topic)
          Constructor for the TopicRequestor class.