pub const DEFAULT_QUEUE: usize = 16;Expand description
How many requests one call’s inbox holds before the dispatcher sheds for it.
Deep enough that a call busy with one signalling exchange does not shed the next request
behind it, shallow enough that a task which has stopped reading is noticed rather than
buffered for. Override with Dispatcher::with_queue.