Reputation: 1469
I have a use case where I'd like to empty my Akka actors' dead letter queues.
My local actor talks to a remote actor, sending it some data periodically. I think these get queued up as when the remote actors becomes available, it gets a flood of events.
Is it possible to limit the size of this queue? Or even better access it, for clearing up the excess items based on some criteria? (at this point I'm even happy just clearing the whole thing up, or disabling this feature)
Upvotes: 4
Views: 1472