How to validate akka TypedActor proxies created out of ActorRefs

92 Views Asked by At

The following would create a TypedActor proxy out of an ActorRef.

ITest proxy = TypedActor.get(actorSystem).typedActorOf( new TypedProps(ITest.class), actorRef);

Is there some way to validate the proxy, so as to ensure that it wont fail during invocation?

0

There are 0 best solutions below