// Listeners for active=true flow control. When true is sent to a listener,
// publishing should pause until false is sent to listeners.
flows []chan bool
NotifyFlow registers a listener for basic.flow methods sent by the server.
When `false` is sent on one of the listener channels, all publishers should
pause until a `true` is sent.
One claims that true means that clients should pause. The other says clients should pause when false is sent. Which is it?
One claims that
true
means that clients should pause. The other says clients should pause whenfalse
is sent. Which is it?