Reputation: 714
I've been using Akka's event stream in a Play app as an event bus where I can publish events and subscribe listeners and I wanted to know what are the gotchas I should take into account. Specifically there are two things:
Upvotes: 6
Views: 1866
Reputation: 120
Considering constraints I would not use Akka's event bus for this purpose.
Main reasons are:
Easiest way to deal with that would be to use message queue such as RabbitMQ. While back I was using sstone/amqp-client. MQ can provide you with persistent queues (queue for each listener/listener type).
Upvotes: 2