unbindTopic

suspend fun unbindTopic(pattern: String, queueName: String): Result<Boolean>(source)

Removes a topic binding between a pattern and a queue.

This operation is idempotent (safe to call multiple times with the same arguments).

Return

A Result containing true if a binding was removed, false if no matching binding was found.

Parameters

pattern

The pattern to unbind from the queue.

queueName

The name of the queue to unbind from the pattern.