/**
  * Actions to execute when completed (on main thread)
  * Implement this if you want to handle the data in your AsyncTask after it has been processed
  *
  * @param Server $server
  *
  * @return void
  */
 public function onCompletion(Server $server)
 {
     if ($this->shouldReschdule) {
         $this->schedule();
         return;
     }
     StormClient::finished($this->id, $this->result);
 }