Package org.akka.essentials.java.router.example2.custom

Source Code of org.akka.essentials.java.router.example2.custom.Example1

package org.akka.essentials.java.router.example2.custom;

import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.routing.RandomRouter;
import org.akka.essentials.java.router.example.MsgEchoActor;

import java.util.Arrays;

public class Example1 {

  /**
   * @param args
   * @throws InterruptedException
   */
  public static void main(String[] args) throws InterruptedException {
    ActorSystem _system = ActorSystem.create("CustomRouteeRouterExample");
   
    ActorRef echoActor1 = _system.actorOf(new Props(MsgEchoActor.class));
    ActorRef echoActor2 = _system.actorOf(new Props(MsgEchoActor.class));
    ActorRef echoActor3 = _system.actorOf(new Props(MsgEchoActor.class));
   
    Iterable<ActorRef> routees = Arrays.asList(new ActorRef[] { echoActor1,
        echoActor2, echoActor3 });

    ActorRef randomRouter = _system.actorOf(new Props(MsgEchoActor.class)
        .withRouter(RandomRouter.create(routees)));

    for (int i = 1; i <= 10; i++) {
      // sends randomly to actors
      randomRouter.tell(i);
    }
    _system.shutdown();
  }

}
TOP

Related Classes of org.akka.essentials.java.router.example2.custom.Example1

TOP
Copyright © 2018 www.massapi.com. 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.