Re: [akka-user] dead letters encountered and timed out replies

2014-10-23 Thread Nicola Piccinini
>> If I am not able to filter out this kind of errors from the dead-letter >> log, it is useless to look at it. > > Dead letters are useful to look at then you send things to wrong / dead > actors and you didn't notice for example. yes, in fact it is potentially very useful and I would like to che

Re: [akka-user] dead letters encountered and timed out replies

2014-10-08 Thread Nicola Piccinini
la, > > > > On Wed, Oct 1, 2014 at 12:10 PM, Nicola Piccinini > wrote: >> >> hi all, >> >> my understanding is that when I have: >> >> actorRef ? "hi" >> >> and the future times out, the reply eventually sent back from ac

[akka-user] dead letters encountered and timed out replies

2014-10-01 Thread Nicola Piccinini
hi all, my understanding is that when I have: actorRef ? "hi" and the future times out, the reply eventually sent back from actorRef goes to dead-letters. That is fine but the log is "polluted" with messages about "dead letters encountered" related to those replies. Is there a way to filter

Re: [akka-user] mixing FSM and akka-persistence

2014-05-12 Thread Nicola Piccinini
Martin: your suggestions worked indeed: https://github.com/pic/akkaTheHutt/commit/059a0c0de5a67d0cde5812cfdb823a630dac98d3 Thank you very much, Nicola -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional

Re: [akka-user] mixing FSM and akka-persistence

2014-05-08 Thread Nicola Piccinini
>> What about the second part of my email concerning the problem I have >> recovering the PersistentFSM: > > > I think it might well be coupled with the other issue, it seems that the > TestFSMRef somehow mixes up the Processor internals. but that should not be related in any way with the tests.

Re: [akka-user] mixing FSM and akka-persistence

2014-05-08 Thread Nicola Piccinini
thanks Roland for taking care of it. What about the second part of my email concerning the problem I have recovering the PersistentFSM: -- There are also three objects that you can run FiniteStateMachineSpes -> Main AlmostPersistentFSMSpec

Re: [akka-user] mixing FSM and akka-persistence

2014-05-06 Thread Nicola Piccinini
ase share so we can look into the possible issue. > > -Endre > > > On Sun, May 4, 2014 at 2:07 PM, Nicola Piccinini > > > wrote: > >> Yes, http://doc.akka.io/docs/akka/snapshot/scala/persistence. >>> html#state-machines >>> >> >> thank

Re: [akka-user] mixing FSM and akka-persistence

2014-05-04 Thread Nicola Piccinini
> > Yes, > http://doc.akka.io/docs/akka/snapshot/scala/persistence.html#state-machines > thank you for the pointer. The problem was that I had overwritten preStart, with something like: super.preStart() self ! Message and that did not play well with Processor. Since it is probably not a good

[akka-user] mixing FSM and akka-persistence

2014-05-03 Thread Nicola Piccinini
hi all, I am trying to do something like: class MyFSM extends Processor with FSM and at first it seems that it does not work properly. Is it possible to use Processor and FSM together? Thanks, Nicola -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: