Package org.akka.essentials.zeromq.example4

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

package org.akka.essentials.zeromq.example4;

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(PushActor.class), "push");
    system.actorOf(new Props(PullActor1.class), "pull1");
    system.actorOf(new Props(PullActor2.class), "pull2");
  }

}
TOP

Related Classes of org.akka.essentials.zeromq.example4.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.