[TIBCO.EMS.UFOCLIENT .NET client library 8.1 documentation]

Creates a Session object.

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

Syntax

public virtual Session CreateSession(
	bool transacted,
	SessionMode acknowledgeMode
)
Public Overridable Function CreateSession ( _
	transacted As Boolean, _
	acknowledgeMode As SessionMode _
) As Session
public:
virtual Session^ CreateSession(
	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: SessionMode

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

Legal values are listed under TIBCO.EMS.SessionMode.

This parameter is ignored if the session is transacted.

Return Value

A newly created session.

Remarks

The new session uses the connection for all server communications. It will be recreated during connection recovery.

See Also