TIBCO EMS .NET API 8.6
TIBCO EMS .NET API 8.6
|
A Queue object encapsulates a TIBCO EMS specific queue name. More...
Public Member Functions | |
Queue (string name) | |
Constructs a new Queue object with the given name. More... | |
override Object | Clone () |
Implementation of ICloneable. Overrides the cloning process. More... | |
override bool | Equals (Object obj) |
Compare with another object for equality. More... | |
override int | GetHashCode () |
Returns a hashcode representing the current object More... | |
override string | ToString () |
Returns a string representation of this Queue 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 | |
string | QueueName [get] |
Gets the name of the queue More... | |
A Queue object encapsulates a TIBCO EMS specific queue name.
Queues store messages in a point-to-point messaging model in which each message has one producer and one consumer.
|
inline |
Constructs a new Queue object with the given name.
This is an utility provided to client so they can either create a dynamic destination or obtain a destination object provided that the object with the given name is already configured on the server.
This constructor creates only local objects (within the program). It does not attempt to lookup the corresponding server object until the program creates a MessageConsumer or a MessageProducer that uses the queue. That automatic lookup can result in either of two outcomes:
name | Find or create a queue with this name. |
|
inlinevirtual |
Implementation of ICloneable. Overrides the cloning process.
Reimplemented from TIBCO.EMS.Destination.
Reimplemented in TIBCO.EMS.TemporaryQueue.
|
inline |
Compare with another object for equality.
The current instance is said to be equals to another object when the latter is also a Queue
instance and both have the same address.
obj | The object to compare with |
Queue
and has the same address as the current instance, false otherwise.
|
inline |
Returns a hashcode representing the current object
Queue
.
|
inline |
Returns a string representation of this Queue
object.
|
get |
Gets the name of the queue
The lookup name of the queue object. If not set, null is returned
Each queue has a name that is unique among all queues.