TIBCO EMS .NET API 8.4
TIBCO EMS .NET API 8.4
|
A TemporaryQueue object is a unique Queue object created for the duration of a Connection. It is a system-defined queue that can be consumed only by the Connection that created it. More...
Public Member Functions | |
override object | Clone () |
Throws a NotSupported Exception More... | |
void | Delete () |
Deletes a temporary queue that belongs to this connection. More... | |
![]() | |
Queue (string address) | |
Constructs a new Queue object with the given address. More... | |
Queue (TIBCO.EMS.Queue queue) | |
Constructs a new Queue object with the given TIBCO.EMS.Queue object. More... | |
override bool | Equals (object obj) |
Compare with another object for equality. More... | |
override int | GetHashCode () |
Returns a hashcode representing the current object More... | |
![]() | |
Destination (TIBCO.EMS.Destination destination) | |
Constructs a TIBCO.EMS.UFO Destination object with the given TIBCO.EMS.Destination object. More... | |
override string | ToString () |
Returns a string representation of the destination. More... | |
override bool | Equals (object obj) |
Compare with another object for equality. More... | |
override int | GetHashCode () |
Returns a hashcode representing the current object More... | |
Properties | |
override string | QueueName [get] |
Gets the name of the queue More... | |
![]() | |
virtual string | QueueName [get] |
Gets the name of the queue More... | |
A TemporaryQueue object is a unique Queue object created for the duration of a Connection. It is a system-defined queue that can be consumed only by the Connection that created it.
A TemporaryQueue object can be created at either the Session or QueueSession level. Creating a TemporaryQueue at the Session level allows the TemporaryQueue to participate in transactions with objects from the Pub/Sub domain. If a TemporaryQueue is created at the QueueSession level, it will only be able participate in transactions with objects from the PTP domain.
Programs can use temporary queues as reply destinations. A temporary queue exists only for the duration of the session's connection, and is available only within that connection. Only consumers associated with the same connection as the temporary queue can consume messages from it.
|
inlinevirtual |
Throws a NotSupported Exception
Reimplemented from TIBCO.EMS.UFO.Queue.
|
inline |
Deletes a temporary queue that belongs to this connection.
When a client deletes a temporary queue, the server deletes any unconsumed messages in the queue.
If the client still has listeners or receivers for the queue, or is in the middle of a Receive call, then Delete throws an EMSException.
|
get |
Gets the name of the queue
Each queue has a name that is unique among all queues.