定制 arthem/rabbit-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-05-28

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固