CreateChannel Method
Creates a new channel.
procedure CreateChannel(ChannelName: String);
Remarks
This method creates a new channel with the name ChannelName and adds it to the Channel* properties. If a channel with the given ChannelName already exists, an error will be thrown.
Connecting and Creating a Channel
// The examples in this documentation use a RabbitMQ server, which requires SASL Plain auth.
amqpc1.AuthScheme = AmqpclassicAuthSchemes.smSASLPlain;
amqpc1.User =
"guest"
;
amqpc1.Password =
"guest"
;
amqpc1.SSLEnabled =
true
;
amqpc1.Connect(
"amqpclassic.test-server.com"
, 5671);
amqpc1.CreateChannel(
"channel"
);