Stomp::subscribe

stomp_subscribe

Registers to listen to a given destination

説明

オブジェクト指向型 (method):

public bool Stomp::subscribe(string $destination, array $headers = ?)

手続き型:

bool stomp_subscribe(resource $link, string $destination, array $headers = ?)

Registers to listen to a given destination.

パラメータ

link

手続き型のみ: stomp_connect が返す stomp リンク ID。

destination

Destination to subscribe to.

headers

追加のヘッダ (例: receipt) を含む連想配列。

戻り値

成功した場合に true を、失敗した場合に false を返します。

See stomp_ack.

注意

ヒント

Stomp は本来非同期です。同期通信を実装するには receipt ヘッダを追加します。これを追加すると、サーバーがメッセージを受領するかタイムアウトに達するまではメソッドが何も返さないようになります。