dispose method

  1. @mustCallSuper
void dispose()
inherited

Implementation

@mustCallSuper
void dispose() {
  // clear the queue so that the next job will be the stopIsolate
  _queue.dispose();
  if (_isolate != null) {
    stopIsolateJob();
  }
}