当作业到达handle方法的末尾时,它将自动完成,而没有任何异常或干预。
public function handle(){
if($problem){
// manage the problem
return $this->release(5);
}else{
// do nothing and the job will finish anyways
}
}
但是有没有一种手动方式来完成工作,例如
public function handle(){
if($problem){
return $this->release(5);
}else{
return $this->finish();
}
}
也许我忽略了它,但是找不到这样的信息。