You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/application/index/controller/PushJob.php

60 lines
2.8 KiB

10 months ago
<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\index\controller;
use think\Exception;
use think\exception\ErrorException;
use think\Queue;
use think\Config;
class PushJob
{
/**
* 一个使用了队列的 action
*/
public static function actionWithDoPinkJob(array $data, string $name = '')
{
try {
// 1.当前任务将由哪个类来负责处理。
// 当轮到该任务时,系统将生成一个该类的实例,并调用其 fire 方法
$jobHandlerClassName = 'app\index\job\PullDoPink';
// 2.当前任务归属的队列名称,如果为新队列,会自动创建
$jobQueueName = Config::get('queue_name', '') ? Config::get('queue_name', '') : 'doPinkJobQueue';
// 3.当前任务所需的业务数据 . 不能为 resource 类型,其他类型最终将转化为json形式的字符串
// ( jobData 为对象时,存储其public属性的键值对 )
if ($name) {
$jobData = ['pinkInfo' => $data, 'time' => date('Y-m-d H:i:s'), 'doName' => $name];
$isPushed = Queue::push($jobHandlerClassName, $jobData, $jobQueueName);
} else {
$jobData = ['pinkInfo' => $data, 'time' => date('Y-m-d H:i:s')];
if (!isset($data['pink_time']) || !$data['pink_time']) return true;
$timewait = $data['pink_time'] + 300;
//$jobData = [ 'pinkInfo' => 'hahah', 'time' => date('Y-m-d H:i:s'), 'b' => 21] ;
//$timewait = 20;
// 4.将该任务推送到消息队列,等待对应的消费者去执行
$isPushed = Queue::later($timewait, $jobHandlerClassName, $jobData, $jobQueueName);
//$isPushed = Queue::push($jobHandlerClassName , $jobData , $jobQueueName );
// database 驱动时,返回值为 1|false ; redis 驱动时,返回值为 随机字符串|false
}
if ($isPushed !== false) {
return 1;
} else {
return 1;
}
} catch (ErrorException $e) {
echo $e->getMessage();
}
}
}