23 lines
436 B
PHP
23 lines
436 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\queue\redis;
|
||
|
|
|
||
|
|
use Webman\RedisQueue\Consumer;
|
||
|
|
|
||
|
|
class MySendMail implements Consumer
|
||
|
|
{
|
||
|
|
// 要消费的队列名
|
||
|
|
public string $queue = 'send-mail';
|
||
|
|
|
||
|
|
// 连接名,对应 plugin/webman/redis-queue/redis.php 里的连接`
|
||
|
|
public string $connection = 'default';
|
||
|
|
|
||
|
|
// 消费
|
||
|
|
public function consume($data): void
|
||
|
|
{
|
||
|
|
// 无需反序列化
|
||
|
|
var_export($data);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|