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

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,

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

2017-11-05 Thread Alexandr Sova
Hello, Akka community! Sometimes there are situations when you don't have an ActorRef instance but you know where to ask for it. It may be because actor is still haven't being created and actor creation procedure requires some long-running tasks to be completed for instance your application