Re: [akka-user][deprecated] How to recover Message if akka actor goes down for some reason?

2019-03-28 Thread Patrik Nordwall
Trying to collect dropped/lost messages via dead letters will not work reliably. For example it can be lost when sending from one node to another if there is a network problem at the same time. The only way to know that it arrived is to send acknowledgment message back, and if no acknowledgement

Re: [akka-user][deprecated] How to recover Message if akka actor goes down for some reason?

2019-03-26 Thread Bishnu Shankar Pandey
Can you give me an example to handle the messagea?? On Tue, 26 Mar, 2019, 23:34 Brian Maso, wrote: > I suggest looking up "dead letters" (and maybe also "unhandled messages"). > What you are describing is a dead letter message, and there is a specific > mechanism for routing and handling them

Re: [akka-user][deprecated] How to recover Message if akka actor goes down for some reason?

2019-03-26 Thread Brian Maso
I suggest looking up "dead letters" (and maybe also "unhandled messages"). What you are describing is a dead letter message, and there is a specific mechanism for routing and handling them in Akka. Best regards, Brian Maso On Tue, Mar 26, 2019 at 3:46 AM Bishnu Shankar Pandey <

[akka-user][deprecated] How to recover Message if akka actor goes down for some reason?

2019-03-26 Thread Bishnu Shankar Pandey
I want to solve two scenarios : 1. I have a sender Actor and a Receiver Actor how will the sender actor know that the receiver actor is not responding. Terminated case can be used to get a notification but what is the latency or the response time of the *Terminated message*. I can't miss