52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace app\queue\redis;
|
|
|
|
use app\common\service\PushService;
|
|
use Webman\RedisQueue\Consumer;
|
|
use Webman\Push\Api;
|
|
use support\exception\BusinessException;
|
|
|
|
class MyMailSend implements Consumer
|
|
{
|
|
// 要消费的队列名
|
|
public $queue = 'send-mail';
|
|
|
|
// 连接名,对应 plugin/webman/redis-queue/redis.php 里的连接`
|
|
public $connection = 'default';
|
|
|
|
// 消费
|
|
public function consume($data)
|
|
{
|
|
// $api = new Api(
|
|
// 'http://127.0.0.1:3232',
|
|
// config('plugin.webman.push.app.app_key'),
|
|
// config('plugin.webman.push.app.app_secret')
|
|
// );
|
|
// // 给订阅 user-1 的所有客户端推送 message 事件的消息
|
|
// $api->trigger('user-1', 'message', [
|
|
// 'from_uid' => 2,
|
|
// 'content' => '你好,这个是消息内容'
|
|
// ]);
|
|
// 无需反序列化
|
|
var_export($data); // 输出 ['to' => 'tom@gmail.com', 'content' => 'hello']
|
|
throw new BusinessException('参数错误', 3000);
|
|
}
|
|
// 消费失败回调
|
|
/*
|
|
$package = [
|
|
'id' => 1357277951, // 消息ID
|
|
'time' => 1709170510, // 消息时间
|
|
'delay' => 0, // 延迟时间
|
|
'attempts' => 2, // 消费次数
|
|
'queue' => 'send-mail', // 队列名
|
|
'data' => ['to' => 'tom@gmail.com', 'content' => 'hello'], // 消息内容
|
|
'max_attempts' => 5, // 最大重试次数
|
|
'error' => '错误信息' // 错误信息
|
|
]
|
|
*/
|
|
public function onConsumeFailure(\Throwable $e, $package)
|
|
{
|
|
PushService::push('user-1', 1, '支付超时,订单已被取消,请重新提2222交订单');
|
|
}
|
|
} |