[TIBCO.EMS.UFOCLIENT .NET client library 6.0 documentation]
Assembly: TIBCO.EMS.UFO (in TIBCO.EMS.UFO.dll)
Note:
This method is provided for backward compatibility to support older EMS clients programs.
The new queue session uses the connection for all server communications.
It will be recreated during connection recovery process.
Creates a QueueSession object.
Namespace:
TIBCO.EMS.UFOAssembly: TIBCO.EMS.UFO (in TIBCO.EMS.UFO.dll)
Syntax
public virtual QueueSession CreateQueueSession( bool transacted, int acknowledgeMode ) |
Public Overridable Function CreateQueueSession ( _ transacted As Boolean, _ acknowledgeMode As Integer _ ) As QueueSession |
public: virtual QueueSession^ CreateQueueSession( bool transacted, int 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: System..::.Int32
Indicates whether and how the consumer is to acknowledge received messages.
This version of CreateQueueSession accepts an integer value associated with the acknowledge mode described by a Session member and should only be used for backward compatibility.
This parameter is ignored if the session is transacted.
Return Value
A newly created queue session
Remarks
