#!/usr/bin/env php
<?php 
$broker = broker_init("127.0.0.1", SB_PORT, SB_TCP, SB_PROTOBUF);
$ret = broker_subscribe_topic($broker, "/test/foo");
// consume without auto-ack
while (1) {
    if (($msg = broker_receive($broker, 1000, true)) !== false) {
        echo "Got message: " . print_r($msg, true) . "\n";
    }
}
Exemplo n.º 2
0
#!/usr/bin/env php
<?php 
$broker = broker_init("127.0.0.1", 3323, SB_TCP, SB_PROTOBUF);
$ret = broker_subscribe_topic($broker, "/test/foo");
// consume with auto-ack
while (1) {
    if (($msg = broker_receive($broker, 1000)) !== false) {
        $msg_data = broker_msg_decode($msg);
        echo "Got message: " . print_r($msg_data, true) . "\n";
    } else {
    }
}