arthem/rabbit-bundle
最新稳定版本:0.3.0
Composer 安装命令:
composer require arthem/rabbit-bundle
包简介
Simple RabbitMQ bundle
README 文档
README
A simple and faster setup to work with consumer through handlers.
Installation
composer require arthem/rabbit-bundle
Add auto-tag feature:
# config/services.yaml services: # ... _instanceof: # ... Arthem\Bundle\RabbitBundle\Consumer\Event\EventMessageHandlerInterface: tags: ['arthem_rabbit.event_handler']
Handlers
Every message are based on type which allow to define their corresponding handler. A handler can support multiple types. Handlers and types can be split into queues
By default, this bundle configures:
- one queue named
event - its direct exchange named
x-event - the corresponding consumer named
event
In opposite to RabbitMQBundle, this one provides only one message producer. The message type allows to send message to the appropriate exchange.
Failure
Failed message processing can be logged in a database table.
First enable the feature:
# config/packages/arthem_rabbit.yaml arthem_rabbit: failure: ~
Create your own Entity which must implement Arthem\Bundle\RabbitBundle\Model\FailedEventInterface:
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use Arthem\Bundle\RabbitBundle\Model\FailedEvent as BaseFailedEvent; /** * @ORM\Entity */ class FailedEvent extends BaseFailedEvent { /** * @var string * * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue */ protected $id; public function getId(): string { return (string)$this->id; } }
统计信息
- 总下载量: 15.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-05-28