Package akka.routing

Examples of akka.routing.ScatterGatherFirstCompletedRouter


  public static void main(String[] args) throws Exception {
    ActorSystem _system = ActorSystem
        .create("ScatterGatherFirstCompletedRouterExample");
    ActorRef scatterGatherFirstCompletedRouter = _system.actorOf(new Props(
        RandomTimeActor.class)
        .withRouter(new ScatterGatherFirstCompletedRouter(5, Duration
            .create(2, "seconds"))),
        "myScatterGatherFirstCompletedRouterActor");

    Timeout timeout = new Timeout(Duration.create(10, "seconds"));
    Future<Object> futureResult = akka.pattern.Patterns.ask(
View Full Code Here

TOP

Related Classes of akka.routing.ScatterGatherFirstCompletedRouter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.