PUB/SUB pattern shouldn't have multiple endpoints
Closed this issue · 0 comments
aguadoenzo commented
Currently, Publishers send events to a single endpoint handled by a class which then transfers manually the event to all Subscribers. (see here)
This is not really useful, as you could just connect all publishers and subscribers to the same endpoint and just register them to the appropriate event.
note: I believe multipart messages can be of help in this task