Java javax.jms TopicSession fields, constructors, methods, implement or subclass

Example usage for Java javax.jms TopicSession fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.jms TopicSession.

The text is from its open source code.

Implementation

javax.jms.TopicSession has the following implementations.
Click this link to see all its implementation.

Method

voidclose()
Closes the session.
MessageConsumercreateConsumer(Destination destination)
Creates a MessageConsumer for the specified destination.
TopicSubscribercreateDurableSubscriber(Topic topic, 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.
TopicSubscribercreateDurableSubscriber(Topic topic, String name, 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.
MapMessagecreateMapMessage()
Creates a MapMessage object.
ObjectMessagecreateObjectMessage(Serializable object)
Creates an initialized ObjectMessage object.
MessageProducercreateProducer(Destination destination)
Creates a MessageProducer to send messages to the specified destination.
TopicPublishercreatePublisher(Topic topic)
Creates a publisher for the specified topic.
TopicSubscribercreateSubscriber(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.
TopicSubscribercreateSubscriber(Topic topic)
Creates a nondurable subscriber to the specified topic.
TextMessagecreateTextMessage(String text)
Creates an initialized TextMessage object.
TextMessagecreateTextMessage()
Creates a TextMessage object.
TopiccreateTopic(String topicName)
Creates a topic identity given a Topic name.
voidunsubscribe(String name)
Unsubscribes a durable subscription that has been created by a client.