PHP Doku:: Delete the exchange from the broker. - amqpexchange.delete.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteAMQPThe AMQPExchange classAMQPExchange::delete

Ein Service von Reinhard Neidl - Webprogrammierung.

The AMQPExchange class

<<AMQPExchange::declare

AMQPExchange::publish>>

AMQPExchange::delete

(PECL amqp >= Unknown)

AMQPExchange::deleteDelete the exchange from the broker.

Beschreibung

public void AMQPExchange::delete ([ string $exchange_name = NULL ] )

Delete and exchange from the broker.

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

exchange_name

The name of the exchange to delete. If the AMQPExchange object is already bound to an existing exchange and then exchange_name is not specified, the exchange bound to the AMQPExchange object will be deleted.

Rückgabewerte

Beispiele

Beispiel #1 AMQPExchange::delete() example

<?php

/* Create a new connection */
$cnn = new AMQPConnection();
$cnn->connect();

/* Create a new exchange */
$ex = new AMQPExchange($cnn);
$ex->declare('new_topic_exchange'AMQP_DURABLE AMQP_AUTODELETE);

/* Delete the previous exchange */
$ex2 = new AMQPExchange($cnn);
$ex2->delete('new_topic_exchange');

?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)