Package org.akka.essentials.zeromq.example2

Source Code of org.akka.essentials.zeromq.example2.MyActorSystem

package org.akka.essentials.zeromq.example2;

import akka.actor.ActorSystem;
import akka.actor.Props;

public class MyActorSystem {

  /**
   * @param args
   */
  public static void main(String[] args) {
    ActorSystem system = ActorSystem.create("zeromqTest");
    system.actorOf(new Props(WorkerTaskA.class), "workerA");
    system.actorOf(new Props(WorkerTaskB.class), "workerB");
    system.actorOf(new Props(RouterActor.class), "router");
  }

}
TOP

Related Classes of org.akka.essentials.zeromq.example2.MyActorSystem

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.