Package Data | |
---|---|
Maintainer Username: | muhammedkamel |
Package Create Date: | 2019-05-18 |
Package Last Update: | 2021-01-08 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:23:21 |
Package Statistics | |
---|---|
Total Downloads: | 696 |
Monthly Downloads: | 24 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Rabbitmq adapter for Lumen PHP framework
Run the following command to install the package:
composer require almatar/rabbitmq
Add the following line to bootstrap/app.php
:
$app->register(Almatar\RabbitMQ\RabbitMQServiceProvider::class);
create config/rabbitmq.php
where you can define rabbitmq connections, producers, and consumers.
Example of config/rabbitmq.php
<?php
return [
'connections' => [
'default' => [
'host' => 'localhost',
'port' => 5672,
'user' => 'guest',
'password' => 'password',
'vhost' => '/',
'connection_attempts' => 10,
'reconnect_waiting_seconds' => 3,
'read_write_timeout' => 30, // heartbeat * 2 at least
'heartbeat' => 15,
],
],
'producers' => [
'test_producer' => [
'exchange_options' => [
'name' => 'test_exchange',
'type' => 'fanout'
],
'queue_options' => [
'name' => 'test_queue',
'routing_key' => '',
]
]
],
'consumers' => [
'test_consumer' => [
'qos_prefetch_count' => 5,
'exchange_options' => [
'name' => 'test_exchange',
'type' => 'fanout'
],
'queue_options' => [
'name' => 'test_queue',
'routing_key' => '',
]
]
],
];
consumer
<?php
namespace App\Console\Commands;
use App\Services\TestService;
use Almatar\RabbitMQ\Adapters\Consumer;
use Illuminate\Console\Command;
class TestCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'test:consumer';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Test rabbitmq consumer';
/**
*
* @var Consumer
*/
private $consumer;
/**
* @var TestService
*/
private $service;
/**
* TestCommand constructor.
* @param Consumer $consumer
* @param TestService $service
*/
public function __construct(Consumer $consumer, TestService $service)
{
$this->consumer = $consumer;
$this->service = $service;
parent::__construct();
}
/**
* @throws \Exception
*/
public function handle()
{
$this->info('[x] Test rabbitmq command consumer is up');
$this->consumer->subscribe(
config('rabbitmq.consumers.test_consumer'),
[$this->service, 'execute']
);
}
}
producer
<?php
namespace App\Services;
use Almatar\RabbitMQ\Adapters\Producer;
use PhpAmqpLib\Message\AMQPMessage;
class TestService
{
/**
* @var Producer
*/
private $producer;
/**
* TestService constructor.
* @param Producer $producer
*/
public function __construct(Producer $producer)
{
$this->producer = $producer;
}
/**
* @param AMQPMessage $message
* @throws Exception
*/
public function execute(AMQPMessage $message)
{
$this->producer->publish(
config('rabbitmq.producers.test_producer'),
$message->getBody()
);
$message->delivery_info['channel']->basic_ack($message->delivery_info['delivery_tag'], false);
}
}
Please note the following guidelines before submitting pull requests:
See LICENSE.