[akka-user] Unable to run sample project on Akka Distribute data

2017-11-06 Thread Nagaraju Ajmeera
I tried to download the sample project on Distributed dat in Java and run it.But I was unable to run it .It shows error that no main class found as follows.Please someone help me resolve this . Thank you > compile [info] Updating {file:/home//Implementation%20Akka/akka-samples-distributed-data-

Re: [akka-user] Re: Contribution to simplify FSM testing?

2017-11-06 Thread Alexandr Sova
That way maybe it's a good idea to make it a standalone library? Definitely only if you'd have some time to extract such code from your current project and publish it separately. Because right now I'm testing my FSMs like "A My FSM implementation" when { "at state A" should { "be able to d

Re: [akka-user] Need of `onRecoveryCompleted` in akka typed for persistence

2017-11-06 Thread Alexandr Sova
Maybe in that case you still shouldn't make any "validation" or something else at applyEvent. Look at event adapters - it should solve your "renaming missing entry" case and similar cases. Events are much like accounti

Re: [akka-user] ActorRef proxy - had somebody implemented?

2017-11-06 Thread Alexandr Sova
Wow! Konrad, it's such an honor for me that you paid attention to my question. As I mentioned at first post - if a target is a router.fromConfig then > Have an actor who’d keep messages and forward to the target once it’s received it. would have a performance impact because this way message sho

Re: [akka-user] ActorRef proxy - had somebody implemented?

2017-11-06 Thread Konrad “ktoso” Malawski
Normally you’d simple have an Actor do this, instead of hacking into the internals as proposed in your snippet :-) Have an actor who’d keep messages and forward to the target once it’s received it. Having that said, we have the concept of such “FutureRef” defined and implemented in AkkaTyped, it’s