start method

void start()

Implementation

void start() {
  if (!_isRunning) {
    _isRunning = true;
    _run();
  }
}