/**
  * Run export through cron
  *
  * @param Enterprise_ImportExport_Model_Scheduled_Operation $operation
  * @return bool
  */
 public function runSchedule(Enterprise_ImportExport_Model_Scheduled_Operation $operation)
 {
     $data = $this->export();
     $result = $operation->saveFileSource($this, $data);
     return (bool) $result;
 }