privateQueue abstract method

Future<Queue> privateQueue({
  1. bool noWait = false,
  2. Map<String, Object> arguments,
})

A convenience method for allocating private queues. The client will allocate an exclusive queue with a random, server-assigned name and return a Future<Queue> to be completed when the server responds.

Implementation

Future<Queue> privateQueue(
    {bool noWait = false, Map<String, Object> arguments});