예제 #1
0
#!/usr/bin/env php
<?php 
include "proton.php";
$messenger = new Messenger();
$messenger->outgoing_window = 10;
$message = new Message();
$address = $argv[1];
if (!$address) {
    $address = "0.0.0.0";
}
$message->address = $address;
$message->properties = array("binding" => "php", "version" => phpversion());
$message->body = "Hello World!";
$messenger->start();
$tracker = $messenger->put($message);
print "Put: {$message}\n";
$messenger->send();
print "Status: " . $messenger->status($tracker) . "\n";
$messenger->stop();
예제 #2
0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 **/
include "proton.php";
$mess = new Messenger();
$mess->start();
if ($argv[1]) {
    $mess->subscribe($argv[1]);
} else {
    $mess->subscribe("amqp://~0.0.0.0");
}
$msg = new Message();
while (true) {
    $mess->recv(10);
    while ($mess->incoming) {
        try {
            $mess->get($msg);
        } catch (Exception $e) {
            print "{$e}\n";
            continue;
        }
        print "{$msg->address}, {$msg->subject}, {$msg->body}\n";
    }
}
$mess->stop();