- base Props on Deploy, Class and Seq[Any] (i.e. constructor args) - remove deprecated Props usage from akka-docs sample code - rewrite UntypedActorDocTestBase - rewrite Java/Scala doc section on actor creation - add migration guide entry
28 lines
864 B
Java
28 lines
864 B
Java
package docs.pattern;
|
|
|
|
import scala.concurrent.Await;
|
|
import scala.concurrent.Future;
|
|
import akka.actor.ActorRef;
|
|
import akka.actor.ActorRefFactory;
|
|
import akka.actor.Props;
|
|
import akka.actor.UntypedActor;
|
|
import akka.util.Timeout;
|
|
|
|
public class SupervisedAskSpec {
|
|
|
|
public Object execute(Class<? extends UntypedActor> someActor,
|
|
Object message, Timeout timeout, ActorRefFactory actorSystem)
|
|
throws Exception {
|
|
// example usage
|
|
try {
|
|
ActorRef supervisorCreator = SupervisedAsk
|
|
.createSupervisorCreator(actorSystem);
|
|
Future<Object> finished = SupervisedAsk.askOf(supervisorCreator,
|
|
Props.create(someActor), message, timeout);
|
|
return Await.result(finished, timeout.duration());
|
|
} catch (Exception e) {
|
|
// exception propagated by supervision
|
|
throw e;
|
|
}
|
|
}
|
|
}
|