Beispiel #1
0
 *   http://www.apache.org/licenses/LICENSE-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();
Beispiel #2
0
#!/usr/bin/env php
<?php 
include "proton.php";
$messenger = new Messenger();
$messenger->incoming_window = 10;
$message = new Message();
$address = $argv[1];
if (!$address) {
    $address = "~0.0.0.0";
}
$messenger->subscribe($address);
$messenger->start();
while (true) {
    $messenger->recv();
    $messenger->get($message);
    print "Got: {$message}\n";
    $messenger->accept();
}
$messenger->stop();