publish subscribe - ZeroMQ pub-sub categories: are wild cards possible for multiple subscriptions? -
I am reading through the ZeroMQ document and I was wondering if there is a way to use wild cards ? I need a system where you can publish something like ABC and then A. ZeroMac * . Or subscribe to AB
* (i.e. a subscription to A.A.).
* . ABC, AXC, AIC, etc. will match the publications.)
pub / sub matches a prefix therefore AB is OK (in your example ABC Will match).
"Inplace Mailing" is not supported, for obvious reasons (Subscriptions are stored in a triangular data structure) [
Comments
Post a Comment