@@ -6,6 +6,7 @@ C++11 client library for the [WAMP][wamp] protocol.
66** Features** :
77
88- Supports the [ WAMP Basic Profile] [ wamp-basic ]
9+ - Supports [ some advanced WAMP profile features] ( #advanced )
910- Roles: _ Caller_ , _ Callee_ , _ Subscriber_ , _ Publisher_
1011- Transports: TCP and Unix domain raw sockets (with and without handshaking support)
1112- Serializations: JSON and MsgPack
@@ -133,6 +134,15 @@ float value = std::rand() % 10;
133134session->publish (Pub("sensorSampled").withArgs({value}));
134135```
135136
137+ <a name="advanced"></a>Supported Advanced Profile Features
138+ ----------------------------------------------------------
139+
140+ - General: agent identification, feature announcement
141+ - _Callee_: `call_trustlevels`, `caller_identification`, `pattern_based_registration`, `progressive_call_results`
142+ - _Caller_: `call_timeout`, `callee_blackwhite_listing`, `caller_exclusion`, `caller_identification`
143+ - _Publisher_: `publisher_exclusion`, `publisher_identification`, `subscriber_blackwhite_listing`
144+ - _Subscriber_: `pattern_based_subscription`, `publication_trustlevels`, `publisher_identification`
145+
136146Questions, Discussions, and Issues
137147----------------------------------
138148
0 commit comments