[TIBCO.EMS .NET client library 6.0 documentation]

A TemporaryTopic object is a unique Topic object created for the duration of a Connection.

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

Syntax

public class TemporaryTopic : Topic
Public Class TemporaryTopic _
	Inherits Topic
public ref class TemporaryTopic : public Topic

Remarks

A TemporaryTopic object can be created either at the Session or TopicSession level. Creating a TemporaryTopic at the Session level allows the TemporaryTopic to participate in the same transaction with objects from the PTP domain. If a TemporaryTopic is created at the TopicSession level, it will only be able participate in transactions with objects from the Pub/Sub domain

Programs can use temporary topics as reply destinations. A temporary topic 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 TemporaryTopic can consume messages from a TemporaryTopic.

Servers connected by routes exchange messages sent to TemporaryTopic.

Inheritance Hierarchy

System..::.Object
  TIBCO.EMS..::.Destination
    TIBCO.EMS..::.Topic
      TIBCO.EMS..::.TemporaryTopic

See Also