TsgcWSPClient_AMQP › Methods › OpenChannel
Opens a new AMQP channel with the specified name (channel.open).
procedure OpenChannel(const aChannel: string);
| Name | Type | Description |
|---|---|---|
aChannel | const string | Name of the open AMQP channel on which the operation is issued. |
A channel is a lightweight virtual connection multiplexed over the TCP/WebSocket link. All AMQP operations (declare, publish, consume…) run inside a channel. Channel names are local identifiers used by this component to refer to the underlying AMQP channel-id.
sgcWSPClient_AMQP1.OpenChannel('ch1');