If a broker endpoint subscribes to multiple topics, how many messages do you expect to receive? Consider this snippet:
context ctx; auto e = ctx.spawn<blocking>(); e.subscribe("/foo"); e.subscribe("/foo/bar"); e.subscribe("/foo/bar/baz"); e.publish("/foo/bar/baz", 4.2); Should the endpoint receive exactly one message or the same message three times? Personally, I think use exactly-once delivery semantics would be most intuitive. Matthias _______________________________________________ bro-dev mailing list bro-dev@bro.org http://mailman.icsi.berkeley.edu/mailman/listinfo/bro-dev