Closed cartsp closed 4 years ago
It's because your subscribers are using the same "queue": events
("queue" in quotation marks here, because Oracle doesn't really have queues – but the tables are used to create a queue model, which works the same way as an ordinary queue).
This can be a good thing: You can distribute events between multiple instances of the same subscriber.
However, it doesn't sound like this is what you need in this case, since your subscribers are different. The fact that they're different implies that they must each have their own queue.
Thanks a lot, not sure why I found that so difficult to get my head around! Also massive thanks for this library! :+1:
Hi,
Not sure if I am doing anything wrong, but when I publish a message either one or the other of my subscribers handles the message rather than both. I am using Oracle as the transport and to handle the subscribers. I have tried doing this a few different ways, but it is the same result each time.
Publisher Code:
Then my subscribers are like so:
Any help would be much appreciated!