eclabsit/rabbitmq-bacground-jobs

Background Jobs using RabbitMQ

1.1.4 2018-06-19 17:41 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:07:35 UTC


README

The RabbitMQModule Background Jobs implementation

Installation

Composer

composer.phar require eclabsit/rabbitmq-background-jobs

Usage

Configuration

Use RabbitMQModule Configuration to set up Connection, Consumers and Producers

Publishing Jobs

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

MailJob MUST implements RabbitMqBackgroundJobs\Job\JobInterface