pekko/akka-docs/rst/java/code/docs/pattern/SupervisedAskSpec.java

29 lines
863 B
Java
Raw Normal View History

package docs.pattern;
import scala.concurrent.Await;
import scala.concurrent.Future;
2012-12-08 15:13:58 +01:00
import akka.actor.ActorRef;
import akka.actor.ActorRefFactory;
import akka.actor.Props;
import akka.actor.UntypedActor;
import akka.util.Timeout;
public class SupervisedAskSpec {
2012-12-08 15:13:58 +01:00
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,
2012-12-08 15:13:58 +01:00
Props.apply(someActor), message, timeout);
return Await.result(finished, timeout.duration());
} catch (Exception e) {
// exception propagated by supervision
2012-12-08 15:13:58 +01:00
throw e;
}
}
}