123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\timer\controller;
- use think\facade\Cache;
- /**
- * 定时任务监听器
- * Class Listener
- * @package app\timer\controller
- */
- class Task
- {
- /**
- * 定时执行任务
- * @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);
- }
- }
- /**
- * 获取任务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);
- }
- }
|