[TIBCO.EMS .NET client library 8.1 documentation]

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.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public class TemporaryQueue : Queue
Public Class TemporaryQueue _
	Inherits Queue
public ref class TemporaryQueue : public Queue

Remarks

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.

Inheritance Hierarchy

System..::.Object
  TIBCO.EMS..::.Destination
    TIBCO.EMS..::.Queue
      TIBCO.EMS..::.TemporaryQueue

See Also