Van Nguyen
Van Nguyen
The Outbox pattern problem statement is this 👇 > How to reliably/atomically update the database and send messages/events? If DAPr implements the pattern the question will be **where it stores...
> I can confirm that this seems to be a 7zip issue. I get the same errors: > > ``` > ERROR: Data Error : Windows6.1-KB2685811-x64.cab > ERROR: Data Error...
Fanout exchange doesn't seem to be a right choice for your case because whatever you publish to the exchange will be routed to those 2 queues. I would suggest you...
What do you really mean by "more than one subscriber" If you mean multiple threads, Burrow.NET supports that by default, you can specify the number of threads when subscribe to...
Let's say you publish message type "FinishedOrdersQueue" to the exchange and eventually route to that queue. If you subscribe from that queue, your app will receive messages of that type....
Ah ok, you want all subscribers to have the same amount of messages. Then I guess you can create another queue, bind to the same exchange with the same routing...