TsgcWSPClient_STOMP_RabbitMQMethods › UnSubscribeQueueOutside

UnSubscribeQueueOutside Method

Cancels a previous subscription registered with SubscribeQueueOutside.

Syntax

procedure UnSubscribeQueueOutside(const aQueue: String);

Parameters

NameTypeDescription
aQueueconst StringQueue name (without the /amq/queue/ prefix) passed to the matching SubscribeQueueOutside call.

Remarks

Sends an UNSUBSCRIBE frame for destination /amq/queue/aQueue. The queue itself is not deleted because it was declared outside the STOMP gateway.

Example

sgcRabbitMQ.UnSubscribeQueueOutside('legacy.orders');

Back to Methods