Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stomp_set_read_timeout(3) [php man page]

STOMP_SET_READ_TIMEOUT(3)						 1						 STOMP_SET_READ_TIMEOUT(3)

Stomp::setReadTimeout - Sets read timeout

       Object oriented style (method):

SYNOPSIS
public void Stomp::setReadTimeout (int $seconds, [int $microseconds]) DESCRIPTION
Procedural style: void stomp_set_read_timeout (resource $link, int $seconds, [int $microseconds]) Sets read timeout. PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3). o $seconds - The seconds part of the timeout to be set. o $microseconds - The microseconds part of the timeout to be set. EXAMPLES
Example #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); ?> Example #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($link, 10); /* close connection */ stomp_close($link); ?> PHP Documentation Group STOMP_SET_READ_TIMEOUT(3)

Check Out this Related Man Page

STOMP_CONNECT(3)							 1							  STOMP_CONNECT(3)

Stomp::__construct - Opens a connection

       Object oriented style (constructor):

SYNOPSIS
public Stomp::__construct ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $headers]) DESCRIPTION
Procedural style: resource stomp_connect ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $head- ers]) Opens a connection to a stomp compliant Message Broker. PARAMETERS
o $broker - The broker URI o $username - The username. o $password - The password. o $headers -Associative array containing the additional headers (example: receipt). RETURN VALUES
Note A transaction header may be specified, indicating that the message acknowledgment should be part of the named transaction. CHANGELOG
+--------+-----------------------------------+ |Version | | | | | | | Description | | | | +--------+-----------------------------------+ | 1.0.1 | | | | | | | The $headers parameter was added | | | | +--------+-----------------------------------+ EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } /* close connection */ unset($stomp); ?> Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } /* close connection */ stomp_close($link); ?> PHP Documentation Group STOMP_CONNECT(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Does WIN2K stomp on the boot record like NT?

My home PC is dual boot with Linux and Win98. I want to upgrade both to a newer version, and have the Linux CD's now. What I need to know is does Win2K Pro stomp (write over LiLo) on the boot record like NT (2 Replies)
Discussion started by: 98_1LE
2 Replies

2. Shell Programming and Scripting

At command for Linux job not working from php

I have a script .sh with a curl command in it: curl --digest "http://xxxxxxx.xxx/mail.php?email=xxxx@xxx.xx"; from terminal this works good : ./script.sh //(mail arrives in my box) from php this works good: shell_exec('./phpsc.sh'); // (mail arrives in my box) from terminal this... (13 Replies)
Discussion started by: extra93
13 Replies

3. Shell Programming and Scripting

Terminating a process - is this code best practice?

Hi Folks - I am building a process to kill a list of services. Sometimes, there's a service that hangs therefore I need to add an additionla peice of code to kill all instances of a service if it exists. Here is that portion of code: echo... (10 Replies)
Discussion started by: SIMMS7400
10 Replies

4. UNIX for Beginners Questions & Answers

Telnet failed to localhost.

Hi, I am trying telnet to localhost 514. But the connection is refusing. Port does not appear in netstat. IP table service is also off. (5 Replies)
Discussion started by: Nishit
5 Replies

5. Post Here to Contact Site Administrators and Moderators

Stomp has created two threads recently that can't be read

In the past five minutes stomp has created two thread titled "Bug: empty lines get sometimes duplicated in new post". When I try to read either of those threads, Safari gives me a window containing the message shown in the attachment. (11 Replies)
Discussion started by: Don Cragun
11 Replies