コード例 #1
0
ファイル: media_worker.php プロジェクト: jamiemill/queue
 function log($message, $type = 'debug')
 {
     $message = "{$this->description} - {$message}";
     return parent::log($message, $type);
 }
コード例 #2
0
 protected function _getTaskConf()
 {
     parent::_getTaskConf();
     foreach ($this->_taskConf as &$conf) {
         $conf['timeout'] = 5;
         $conf['retries'] = 1;
     }
     return $this->_taskConf;
 }