15090180611 a2198685da 多样青春夜校
课时过期定时任务(进行中)
课时取消记录次数,同课时超n次无法取消(用户端)
免费课程课时到开始时间无法取消(用户端)
增加定时器封装和队列封装
2024-11-27 18:15:32 +08:00

27 lines
723 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\job\test;
use think\queue\Job;
class DemoJob
{
public function fire(Job $job, $data){
//....这里执行具体的任务
if ($job->attempts() > 3) {
//通过这个方法可以检查这个任务已经重试了几次了
}
//如果任务执行成功后 记得删除任务不然这个任务会重复执行直到达到最大重试次数后失败后执行failed方法
$job->delete();
// 也可以重新发布这个任务
// $job->release($delay); //$delay为延迟时间
}
public function failed($data){
// ...任务达到最大重试次数后,失败了
}
}