currentThread = Thread.currentThread();
}
private void launch(final String[] args) throws Exception {
int port = Integer.parseInt(args[0]);
Server server;
server = new Server(port);
server.publish(IJavaRuntimeInstantiator.class, new JavaRuntimeInstantiatorImpl(dropFirstArg(args)), EXPORTED_INTERFACES);
}