fhteam/xenforo-amqp
最新稳定版本:v1.0.0
Composer 安装命令:
composer require fhteam/xenforo-amqp
包简介
AMQP library for using in XenForo addons
README 文档
README
AMQP client library for XenForo to use servers like RabbitMQ from XenForo
Installation
Please do note, that package name has changed to fhteam/xenforo-amqp. Old name should still work though it will
no longer be maintained.
Library follows PSR4 so installation is a bit different from what we can see in all XenForo addons
So, to use this library you can directly include the script into your source or do the following:
- Install composer into your system or into XenForo root: https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx
- Run
composer initin your XenForo root to create composer.json: https://getcomposer.org/doc/03-cli.md#init - Run
composer require --update-no-dev fhteam/xenforo-amqp:dev-masterto install this package (--update-no-devskips packages added for syntax highlighting ony like Zend Framework): https://getcomposer.org/doc/03-cli.md#require - Put a line
require_once(__DIR__ . '/../vendor/autoload.php');into your library/config.php to add composer autoloader into XenForo's autoloading chain - Now you can use all composer packages (together with ours) in your development process and easily manage them using composer executable
Configuration
Put the following lines at the end of your library/config.php:
//============ AMQP connector settings ============ $config['amqp'] = array( 'host' => '192.168.1.1.1', // The host where your AMPQ-compatible server runs 'port' => '5672', // Port, your server runs on 'user' => 'user', // Authentication user name 'password' => 'password', // Authentication password 'queues' => array( // Queues configuration 'auth_ban' => array( // The name of the queue 'queue_flags' => array( // Queue flags. 'durable' => true, // 'durable' means the queue will survice server reboot ), ), ), );
Usage:
- Create manager instance:
$manager = new \Forumhouse\XenForoAmqp\QueueManager();
- Push a message to queue:
$manager->pushMessage( 'my_queue_name', // The name of the queue. Must be in configuration file (see above) array('data' => 'test_data'), // The data to send to the queue. Will be json_encode'd if array is provided array('delivery_mode' => 2) // Message properties. 'delivery_mode' => 2 makes message persistent );
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2015-03-04