Package org.akka.essentials.zeromq.example3.server

Source Code of org.akka.essentials.zeromq.example3.server.MyServerActorSystem

package org.akka.essentials.zeromq.example3.server;

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

public class MyServerActorSystem {

  /**
   * @param args
   */
  public static void main(String[] args) {
    ActorSystem system = ActorSystem.create("zeromqServerTest");
    system.actorOf(new Props(ServerActor.class), "server");
  }

}
TOP

Related Classes of org.akka.essentials.zeromq.example3.server.MyServerActorSystem

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.