dispatch method

void dispatch(
  1. Msg msg
)

Dispatch a message to the processor.

Implementation

void dispatch(Msg msg) {
  _processor.post(msg);
}