更多>
最新下载
24小时阅读排行榜
- 1 鉴定师APP如何保护隐私_鉴定师APP隐私设置与数据保护措施
- 2 Golang如何实现云原生应用日志聚合
- 3 VSCode注释文档生成工具配置
- 4 如何在Golang中实现网络数据加密传输
- 5 谷歌浏览器下载官网首页_谷歌浏览器官方网页版访问入口
- 6 在Java中如何实现依赖注入与松耦合
- 7 如何通过引用在函数内部递增变量_PHP函数引用传递递增实现
- 8 Bing浏览器怎么投屏到电视_Bing浏览器投屏功能设置与使用
- 9 Pages如何调整行距和字距 Pages文本美观排版的细节调整
- 10 鉴定师APP怎么删除记录_鉴定师APP记录删除与隐私保护方法
- 11 python threading线程同步如何实现
- 12 HTML数据怎样进行数据归档 HTML数据归档策略的实施方法
- 13 抖音PC版如何关注喜欢的创作者_抖音PC版关注功能的快速入门
- 14 系统卸载软件的8个正确方法
- 15 悟空浏览器官方下载网址主页 悟空浏览器官网首页直达入口
更多>
最新教程
-
- Node.js 教程
- 5876 2025-08-28
-
- CSS3 教程
- 862342 2025-08-27
-
- Rust 教程
- 9383 2025-08-27
-
- Vue 教程
- 11471 2025-08-22
-
- PostgreSQL 教程
- 8924 2025-08-21
-
- Git 教程
- 4714 2025-08-21
下载首页 / 类库下载 / 其它类库
AMQP,即Advanced Message Queuing Protocol,一个提供统一消息服务的应用层标准高级消息队列协议,是应用层协议的一个开放标准,为面向消息的中间件设计。基于此协议的客户端与消息中间件可传递消息,并不受客户端/中间件不同产品,不同的开发语言等条件的限制。Erlang中的实现有 RabbitMQ等。
abstract class AbstractChannel { const PROTOCOL_080 = '0.8'; const PROTOCOL_091 = '0.9.1'; public static $PROTOCOL_CONSTANTS_CLASS; public function __construct(AbstractConnection $connection, $channel_id) { $this->connection = $connection; $this->channel_id = $channel_id; $connection->channels[$channel_id] = $this; $this->frame_queue = array(); // Lower level queue for frames $this->method_queue = array(); // Higher level queue for methods $this->auto_decode = false; $this->msg_property_reader = new AMQPReader(null); $this->wait_content_reader = new AMQPReader(null); $this->dispatch_reader = new AMQPReader(null); $this->protocolVersion = self::getProtocolVersion(); switch ($this->protocolVersion) { case self::PROTOCOL_091: self::$PROTOCOL_CONSTANTS_CLASS = 'PhpAmqpLib\Wire\Constants091'; $c = self::$PROTOCOL_CONSTANTS_CLASS; $this->debug = new DebugHelper($c); $this->amqp_protocol_header = $c::$AMQP_PROTOCOL_HEADER; $this->protocolWriter = new Protocol091(); $this->waitHelper = new Wait091(); $this->methodMap = new MethodMap091(); break; case self::PROTOCOL_080: self::$PROTOCOL_CONSTANTS_CLASS = 'PhpAmqpLib\Wire\Constants080'; $c = self::$PROTOCOL_CONSTANTS_CLASS; $this->debug = new DebugHelper($c); $this->amqp_protocol_header = $c::$AMQP_PROTOCOL_HEADER; $this->protocolWriter = new Protocol080(); $this->waitHelper = new Wait080(); $this->methodMap = new MethodMap080(); break; default: throw new AMQPRuntimeException(sprintf( 'Protocol: %s not implemented.', $this->protocolVersion )); } }


本站所有资源都是由网友投搞发布,或转载各大下载站,请自行检测软件的完整性!本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!如有侵权请联系我们删除下架,联系方式:admin@php.cn