PHP Doku:: Sets read timeout - stomp.setreadtimeout.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteStomp ClientThe Stomp classStomp::setReadTimeout -- stomp_set_read_timeout

Ein Service von Reinhard Neidl - Webprogrammierung.

The Stomp class

<<Stomp::send -- stomp_send

Stomp::subscribe -- stomp_subscribe>>

Stomp::setReadTimeout

stomp_set_read_timeout

(PECL stomp >= 0.3.0)

Stomp::setReadTimeout -- stomp_set_read_timeoutSets read timeout

Beschreibung

Object oriented style (method):

public void Stomp::setReadTimeout ( int $seconds [, int $microseconds ] )

Procedural style:

void stomp_set_read_timeout ( resource $link , integer $seconds [, integer $microseconds ] )

Sets read timeout.

Parameter-Liste

link

Nur für prozedurale Aufrufe: Die Stomp-Verbindung, die von stomp_connect() zurückgegeben wurde.

seconds

The seconds part of the timeout to be set.

microseconds

The microseconds part of the timeout to be set.

Beispiele

Beispiel #1 Object oriented style

<?php

/* connection */
try {
    
$stomp = new Stomp('tcp://localhost:61613');
} catch(
StompException $e) {
    die(
'Connection failed: ' $e->getMessage());
}

$stomp->setReadTimeout(10);
    
/* close connection */
unset($stomp);

?>

Beispiel #2 Procedural style

<?php

/* connection */
$link stomp_connect('ssl://localhost:61612');

/* check connection */
if (!$link) {
    die(
'Connection failed: ' stomp_connect_error());
}

stomp_set_read_timeout($link10);
    
/* close connection */
stomp_close($link);

?>


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",...)