Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stomp_get_read_timeout(3) [php man page]

STOMP_GET_READ_TIMEOUT(3)						 1						 STOMP_GET_READ_TIMEOUT(3)

Stomp::getReadTimeout - Gets read timeout

       Object oriented style (method):

SYNOPSIS
public array Stomp::getReadTimeout (void ) DESCRIPTION
Procedural style: array stomp_get_read_timeout (resource $link) Gets read timeout PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3). RETURN VALUES
Returns an array with 2 elements: sec and usec. EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } var_dump($stomp->getReadTimeout()); /* close connection */ unset($stomp); ?> The above example will output something similar to: array(2) { ["sec"]=> int(2) ["usec"]=> int(0) } Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } var_dump(stomp_get_read_timeout($link)); /* close connection */ stomp_close($link); ?> The above example will output something similar to: array(2) { ["sec"]=> int(2) ["usec"]=> int(0) } PHP Documentation Group STOMP_GET_READ_TIMEOUT(3)

Check Out this Related Man Page

STOMP_GET_SESSION_ID(3) 						 1						   STOMP_GET_SESSION_ID(3)

Stomp::getSessionId - Gets the current stomp session ID

       Object oriented style (method):

SYNOPSIS
public string Stomp::getSessionId (void ) DESCRIPTION
Procedural style: string stomp_get_session_id (resource $link) Gets the current stomp session ID. PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3). RETURN VALUES
string session id on success or FALSE on failure. EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } var_dump($stomp->getSessionId()); /* close connection */ unset($stomp); ?> The above example will output something similar to: string(35) "ID:php.net-52873-1257291895530-4:14" Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } var_dump(stomp_get_session_id($link)); /* close connection */ stomp_close($link); ?> The above example will output something similar to: string(35) "ID:php.net-52873-1257291895530-4:14" PHP Documentation Group STOMP_GET_SESSION_ID(3)
Man Page

4 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

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

3. 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

4. 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