/**
  * Wrapper to handle execution process of the task
  * @param string $id unique identifier of the task to be executed
  */
 public function actionRun($id)
 {
     CronProcess::createById($id, $this->_service)->run();
 }