eclabsit/rabbitmq-bacground-jobs

使用RabbitMQ的后台作业

1.1.4 2018-06-19 17:41 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:31:38 UTC


README

RabbitMQ模块后台作业实现

安装

Composer

composer.phar require eclabsit/rabbitmq-background-jobs

使用

配置

使用RabbitMQModule配置来设置连接、消费者和生产者

发布作业

$this->bgJobsProducer()->publish(serialize(new MailJob()));

MailJob必须实现RabbitMqBackgroundJobs\Job\JobInterface