PHP » GoLang |
login |
register |
about
|
GoLang Stomp::readFrame
request it (321)
GoLang replacement for PHP's Stomp::readFrame
[edit | history]
Stomp::readFramestomp_read_frame(PECL stomp >= 0.1.0) Stomp::readFrame -- stomp_read_frame — Reads the next frame DescriptionObject oriented style (method): Procedural style:
array stomp_read_frame
( resource
$link
)Reads the next frame. It is possible to instantiate an object of a specific class, and pass parameters to that class's constructor. Parameters
Return Values
Changelog
Examples
Example #1 Object oriented style
<?php The above example will output something similar to: object(StompFrame)#2 (3) { ["command"]=> string(7) "MESSAGE" ["headers"]=> array(5) { ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:2:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257226805828" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } ["body"]=> string(3) "bar" }
Example #2 Procedural style
<?php The above example will output something similar to: array(3) { ["command"]=> string(7) "MESSAGE" ["body"]=> string(3) "bar" ["headers"]=> array(6) { ["transaction"]=> string(2) "t1" ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:3:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257227037059" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } } |
more
Recently updated
more
Most requested
more
Last requests
|