TsgcWSPClient_AMQPMethods › EnableChannel

EnableChannel Method

Resumes message flow on a previously-paused channel (channel.flow active=true).

Syntax

procedure EnableChannel(const aChannel: string);

Parameters

NameTypeDescription
aChannelconst stringName of the open AMQP channel on which the operation is issued.

Remarks

Sends channel.flow to the broker with the active flag set, telling it to resume sending deliveries on this channel. Counterpart of DisableChannel.

Example

sgcWSPClient_AMQP1.EnableChannel('ch1');

Back to Methods