Package org.akka.essentials.grid

Examples of org.akka.essentials.grid.StartWorker


        .actorFor("akka://WorkServerSys@127.0.0.1:2552/user/RegisterRemoteWorkerActor");
   
    // create the worker address message
    Address myAddr = new Address("akka", "WorkerSys", "127.0.0.1", port);
    // send a message to server to register this worker instance
    registerRemoteWorkerActor.tell(new StartWorker(myAddr.toString()));
  }
View Full Code Here

TOP

Related Classes of org.akka.essentials.grid.StartWorker

Copyright © 2018 www.massapicom. 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.