SAMConnection->subscribe()
(no version information, might be only in CVS)
SAMConnection->subscribe() --
指定したトピックの購読を作成する
説明
class
SAMConnection {
string
subscribe ( string targetTopic )
}
"subscribe" メソッドを使用して、指定したトピックを購読します。
パラメータ
targetTopic
購読するトピックの識別子 (topic://topicname)。
返り値
購読の識別子を返します。これを、それ以降にデータを取得する際に
トピックのデータを取得するためのセレクタとして使用します。
エラーが発生した場合には FALSE を返します。
この識別子を使用して、特定のトピック名の受信コールを行います。
例
例 1. トピックの購読
<?php $subid = $conn->subscribe('topic://A'); if (!$subid) { // 購読に失敗しました! echo "Subscribe failed ($conn->errno) $conn->error"; } ?>
|
|