|
| QueueReceiver | CreateReceiver (TIBCO.EMS.Queue queue) |
| | Create a QueueReceiver object to receive messages from the specified queue More...
|
| |
| QueueReceiver | CreateReceiver (TIBCO.EMS.Queue queue, string messageSelector) |
| | Create a QueueReceiver object to receive messages from the specified queue using a message selector More...
|
| |
| QueueSender | CreateSender (TIBCO.EMS.Queue queue) |
| | Create a QueueSender object to send messages to the specified queue More...
|
| |
| QueueBrowser | CreateBrowser (TIBCO.EMS.Queue queue) |
| | Create a QueueBrowser object to peek at the messages on the specified queue. More...
|
| |
| QueueBrowser | CreateBrowser (TIBCO.EMS.Queue queue, string messageSelector) |
| | Create a QueueBrowser object to peek at the messages on the specified queue using a message selector. More...
|
| |
| MessageConsumer | CreateConsumer (Destination dest) |
| | Create a MessageConsumer for a specific destination. More...
|
| |
| MessageConsumer | CreateConsumer (Destination dest, string messageSelector) |
| | Create a MessageConsumer for a specific destination, using a message selector. More...
|
| |
| MessageConsumer | CreateConsumer (Destination dest, string messageSelector, bool noLocal) |
| | Create MessageConsumer for the specified destination, using a message selector. This method can specify whether messages published by its own connection should be delivered to it, if the destination is a topic More...
|
| |
| TemporaryTopic | CreateTemporaryTopic () |
| | Create a TemporaryTopic object More...
|
| |
| TemporaryQueue | CreateTemporaryQueue () |
| | Create a TemporaryQueue object More...
|
| |
| TopicSubscriber | CreateDurableSubscriber (Topic topic, string name) |
| | Create a durable subscriber to the specified topic More...
|
| |
| TopicSubscriber | CreateDurableSubscriber (Topic topic, string name, string messageSelector, bool noLocal) |
| | Create 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. More...
|
| |
| MessageConsumer | CreateSharedConsumer (Topic topic, string sharedSubscriptionName) |
| | Create a shared non-durable subscription (with the specified name on the specified topic - if one does not already exist), and a consumer on that subscription. More...
|
| |
| MessageConsumer | CreateSharedConsumer (Topic topic, string sharedSubscriptionName, string messageSelector) |
| | Create a shared non-durable subscription (with the specified name on the specified topic - if one does not already exist), and a consumer on that subscription, using the specidied message selector. More...
|
| |
| MessageConsumer | CreateSharedDurableConsumer (Topic topic, string name) |
| | Create a shared durable subscription (with the specified name on the specified topic - if one does not already exist), and a consumer on that subscription. More...
|
| |
| MessageConsumer | CreateSharedDurableConsumer (Topic topic, string name, string messageSelector) |
| | Create a shared durable subscription (with the specified name on the specified topic - if one does not already exist), and a consumer on that subscription, using the specified message selector. More...
|
| |
| Topic | CreateTopic (string topicName) |
| | Create a topic More...
|
| |
| TIBCO.EMS.Queue | CreateQueue (string queueName) |
| | Create a queue More...
|
| |
| MessageProducer | CreateProducer (Destination dest) |
| | Create a MessageProducer to send messages to the specified destination. More...
|
| |
| void | Unsubscribe (string name) |
| | Unsubscribe a durable topic subscription More...
|
| |
| BytesMessage | CreateBytesMessage () |
| | Create a byte array message More...
|
| |
| MapMessage | CreateMapMessage () |
| | Create a MapMessage object. A MapMessage object is used to send a self-defining set of name-value pairs, where names are String objects and values are primitive values in the .NET programming language. More...
|
| |
| Message | CreateMessage () |
| | Create a Message object. The Message interface is the root interface of all TIBCO EMS messages. A Message object holds all the standard message header information. It can be sent when a message containing only header information is sufficient More...
|
| |
| ObjectMessage | CreateObjectMessage () |
| | Create an ObjectMessage object. An ObjectMessage object is used to send a message that contains a serializable .NET object. More...
|
| |
| ObjectMessage | CreateObjectMessage (Object obj) |
| | Create an ObjectMessage object. An ObjectMessage object is used to send a message that contains a serializable .NET object. More...
|
| |
| StreamMessage | CreateStreamMessage () |
| | Create a StreamMessage object More...
|
| |
| TextMessage | CreateTextMessage () |
| | Create a TextMessage object More...
|
| |
| TextMessage | CreateTextMessage (string text) |
| | Create a TextMessage object More...
|
| |
| virtual void | Commit () |
| | Commit the open transaction More...
|
| |
| virtual void | Rollback () |
| | Roll back messages in the current transaction More...
|
| |
| void | Close () |
| | Close a session and reclaim resources More...
|
| |
| void | Recover () |
| | Recover from undetermined state during message processing More...
|
| |
| void | Run () |
| | Obsolete: Not to be used by ordinary JMS Clients More...
|
| |
| override string | ToString () |
| | Returns a string representation of this Session object. More...
|
| |
Session restricted to queues
Note: The QueueSession class is for backwards compatibility to support older clients. New clients should use the Session class.
A QueueSession object provides methods for creating QueueReceiver, QueueSender, QueueBrowser, and TemporaryQueue objects.
If there are messages that have been received but not acknowledged when a QueueSession terminates, these messages will be retained and redelivered when a consumer next accesses the queue.