ISession.CreateTemporaryQueue Method (String)

Solclient

ISessionCreateTemporaryQueue Method (String)
version: 7.2.1.27
Creates a temporary Queue on this session with the given name. This Queue should only be bound to by a consumer on this session; although other sessions can publish to it.

A temporary queue can only be used to bind to non-durable endpoints. The non-durable endpoint is created on the appliance when a consumer is bound on this session.

Connect must be called before calling this method.

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
IQueue CreateTemporaryQueue(
	string name
)
Function CreateTemporaryQueue ( 
	name As String
) As IQueue
IQueue^ CreateTemporaryQueue(
	String^ name
)

Parameters

name
Type: SystemString

Return Value

Type: IQueue
Returns a temporary Queue on this session with the given name
Exceptions
ExceptionCondition
ObjectDisposedException Thrown when the session is already disposed (terminal state).
OperationErrorException Thrown when the operation fails. Possible sub-codes:
See Also