TimerService.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\services;
  12. use Swoole\Timer;
  13. use think\facade\Log;
  14. class TimerService
  15. {
  16. public function tick($limit, $fn)
  17. {
  18. //$limit 任务执行时间: 1000 == 1秒
  19. Timer::tick($limit, function () use ($fn) {
  20. try {
  21. $fn();
  22. } catch (\Throwable $e) {
  23. Log::error('定时器报错[' . class_basename($this) . ']: ' . $e->getMessage());
  24. }
  25. });
  26. }
  27. }