Laravel 8 取消批处理

2021-07-06 11:33 更新

有时候你可能需要取消指定的批处理的执行,可以通过 Illuminate\Bus\Batch 实例调用 cancel 方法来完成:

/**
 * 执行任务
 *
 * @return void
 */
public function handle()
{
    if ($this->user->exceedsImportLimit()) {
        return $this->batch()->cancel();
    }

    if ($this->batch()->cancelled()) {
        return;
    }
} 
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号