(PECL amqp >= Unknown)
AMQPExchange::declare — Declare a new exchange on the broker.
Declare a new exchange on the broker.
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Throws AMQPExchangeException on failure.
Throws AMQPChannelException if the channel is not open.
Throws AMQPConnectionException if the connection to the broker was lost.
Example #1 AMQPExchange::declare() example
<?php
/* Create a new connection */
$cnn = new AMQPConnection();
$cnn->connect();
$ch = new AMQPChannel($cnn);
$ex = new AMQPExchange($ch);
$ex->setName('new_topic_exchange');
$ex->setType(AMQP_EX_TYPE_DIRECT);
$ex->setFlags(AMQP_DURABLE | AMQP_AUTODELETE);
$ex->declare();
?>
danil dot mipt at gmail dot com (2013-06-04 12:21:13)
deprecated.
Use AMQPExchange::declareExchange() and AMQPQueue::declareQueue() as the main methods.
https://github.com/pdezwart/php-amqp/pull/58