My question is very simple and straight-forward. In RabbitMQ, we can subscribe to channels using regex or wildcard pattern("Topic" type subscription). So is there any possibility to achieve this in Autobahn ?
Autobahn: Subscribing to channels with regex or wildcard pattern
680 Views Asked by Kamalakannan J At
2
There are 2 best solutions below
0

The WAMP specification is split into 2 parts:
- the basic profile, which is stable and mandatory for all implementation to implement fully.
- the advanced profile, which is work-in-progress and the features herein are optional for implementations to provide.
Pattern-based subscriptions are part of the WAMP "Advanced Profile", but not yet (2015/01) in the Autobahn WAMP client libraries or the e.g. the Crossbar.io WAMP router (see here).
Pattern-based subscriptions are now explained in more detail in its own document which is also referenced from the WAMP IETF draft. Here's an example, quoting from the current AutobahnJS reference:
Given the above example is from official AutobahnJS docs, I presume the crossbar.io WAMP router must also have support built-in now.
As for any other WAMP libraries, your mileage will likely vary.