- 
                Notifications
    You must be signed in to change notification settings 
- Fork 9
Open
Description
/**
 * 延时入队列
 * @param $dealy
 * @param $job
 * @param string $data
 * @param $queue
 * @return mixed
 * @throws \Exception
 */
public function laterOn($dealy, $job, $data = '', $queue = null)
{
    if ($this->canPush()) {
        return $this->later($dealy, $job, $data, $queue);
    } else {
        throw new \Exception("max jobs number exceed! the max jobs number is {$this->maxJob}");
    }
}
延 时任务最长能延时多长时间?
谢谢!
Metadata
Metadata
Assignees
Labels
No labels