start method

void start()

Starts consuming the inbound stream. Call once before submitting.

Implementation

void start() {
  if (_subscription != null) return;
  _subscription = _inboundWrapped().listen(_dispatch);
}