transition method

void transition(
  1. ProcessingStateMessage processingState
)

Transitions to processingState and broadcasts a playback event.

Implementation

void transition(ProcessingStateMessage processingState) {
  _processingState = processingState;
  broadcastPlaybackEvent();
}