AMQPConnection
PHP Manual

AMQPConnection::setTimeout

(No version information available, might only be in SVN)

AMQPConnection::setTimeoutSet the timeout.

说明

public bool AMQPConnection::setTimeout ( float $timeout )

Set the amount of time, in seconds, after which this instance of an AMQPConnection object times out a request to the broker. Setting this value will override the default value specified by the amqp.timeout INI setting. To specify a timeout of 500ms, simply pass in 0.5.

参数

timeout

The timeout used to connect to the AMQP broker.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

错误/异常

Throws an AMQPConnectionException if timeout is longer less than 0.

范例

Example #1 AMQPConnection::setTimeout() example

<?php

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

// set the timeout
$cnn->setTimeout(5672);

?>


AMQPConnection
PHP Manual