// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\timer\controller; use think\facade\Cache; /** * 定时任务监听器 * Class Controller * @package app\timer\controller */ class Controller { /** * 定时执行任务 * @param int $storeId * @param string $key * @param int|null $expire * @param callable $callback * @return mixed */ protected function setInterval(int $storeId, string $key, int $expire, callable $callback) { if (!$this->hasTaskId($storeId, $key)) { $this->setTaskId($storeId, $key, $expire); return call_user_func($callback); } return null; } /** * 获取任务ID * @param int $storeId * @param string $key * @return bool */ protected function hasTaskId(int $storeId, string $key): bool { return Cache::has("Listener:$storeId:$key"); } /** * 设置任务ID * 用于实现定时任务的间隔时间, 如果任务ID存在并未过期, 则不执行任务 * @param int $storeId * @param string $key * @param int $expire 任务ID过期时长(单位:秒) * @return bool */ protected function setTaskId(int $storeId, string $key, int $expire = 60): bool { return Cache::set("Listener:$storeId:$key", true, $expire); } }