SAMConnection->peekAll()
(no version information, might be only in CVS)
SAMConnection->peekAll() --
ひとつあるいは複数のメッセージをキューから読み込み、それをキューに残したままにする
説明
class
SAMConnection {
array
peekAll ( string target [, array properties] )
}
パラメータ
target
メッセージを取得するキューの識別子。
properties
オプションの連想配列で、読み込み操作を制御するパラメータを指定します。
返り値
このメソッドは SAMMessage オブジェクトを返します。
エラーが発生した場合は FALSE を返します。
例
例 1. キューからすべてのメッセージを取得し、そのままメッセージをキューに残す
<?php $msgArray = $conn->peekAll('queue://receive/test'); if ($msgArray) { foreach ( $msgArray as $key => $msg) { echo "Message $key: body = $msg->body\n"; } } else { echo "PeekAll failed ($conn->errno) $conn->error"; } ?>
|
|
例 2. 相関 ID にマッチするメッセージをキューから取得する
<?php
$msgArray = $conn->peekAll('queue://receive/test', array(SAM_CORRELID => $correlId )); if ($msgArray) {
foreach ( $msgArray as $key => $msg) { echo "Message $key: body = $msg->body\n"; } } else echo "PeekAll failed ($conn->errno) $conn->error"; }
?>
|
|