[TIBCO.EMS .NET client library 6.3 documentation]

Creates a TopicSession object.

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

Syntax

public virtual TopicSession CreateTopicSession(
	bool transacted,
	SessionMode acknowledgeMode
)
Public Overridable Function CreateTopicSession ( _
	transacted As Boolean, _
	acknowledgeMode As SessionMode _
) As TopicSession
public:
virtual TopicSession^ CreateTopicSession(
	bool transacted, 
	SessionMode acknowledgeMode
)

Parameters

transacted
Type: System..::.Boolean
Indicates whether the session is transacted.

When true, the new session has transaction semantics.

When false, it has non-transaction semantics.

acknowledgeMode
Type: TIBCO.EMS..::.SessionMode

Indicates whether and how the consumer is to acknowledge received messages.

Legal values are listed under SessionMode.

This parameter is ignored if the session is transacted.

Return Value

A newly created topic session

Remarks

Note: This method is provided for backward compatibility to support older EMS clients programs.
The new topic session uses the connection for all server communications.

See Also