1

I am using Crossbar (WAMP Protocol) router for my node.js application.As router is independent to our application I am not able to do the below operations with Crossbar. Is there any official API available to achieve the below functionality.

  1. Disconnection notification of a subscriber for a specific topic?
  2. List of subscribers for a specific topic?
  3. New subscription notification for a specific topic when a new subscriber subscribes it.

Thanks in advance.

4

1 に答える 1

3

まず、はい、WAMP ルーターはブラック ボックスと見なす必要があるため、アプリ コードはルーターの内部に飛び込むべきではありません。

ただし、アプリがルーターからメタ情報にアクセスする正当な必要性があるシナリオ (あなたのような) があります。

WAMP には、このためのいわゆるメタ イベントメタ プロシージャがあります。たとえば、 Crossbar.ioがメタイベントを介してセッション情報を公開する方法を次に示します。

あなたが求めている情報はすべて「購読者」に関連しているようです。WAMP仕様では:

これらはまだ (2015/01) Crossbar.io に実装されていませんが、実装する予定です。

于 2015-01-19T19:43:11.353 に答える