public static void main(String[] args) throws ExecutionException, InterruptedException {
System.setProperty("galaxy.nodeId", Integer.toString(nodeId));
System.setProperty("galaxy.port", Integer.toString(7050 + nodeId));
System.setProperty("galaxy.slave_port", Integer.toString(8050 + nodeId));
new Fiber(new GenServerActor(new AbstractServer<SumRequest, Integer, SumRequest>() {
@Override
public void init() throws SuspendExecution {
super.init();
Actor.currentActor().register("myServer");
System.out.println(this.toString() + " is ready");