Package org.akka.essentials.java.future.example

Source Code of org.akka.essentials.java.future.example.TestActorSystem

package org.akka.essentials.java.future.example;

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

public class TestActorSystem {

  public static void main(String[] args) throws Exception {
    ActorSystem _system = ActorSystem.create("FutureUsageExample");
    ActorRef processOrder = _system.actorOf(new Props(
        ProcessOrderActor.class));
    processOrder.tell(Integer.valueOf(456));

    Thread.sleep(5000);

    _system.shutdown();
  }

}
TOP

Related Classes of org.akka.essentials.java.future.example.TestActorSystem

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.