if (null == rServer) {
rServer = startRserve();
}
RConnection rconn = new RConnection("127.0.0.1", rServer.port);
rconn.login("beaker", rServer.password);
int pid = rconn.eval("Sys.getpid()").asInteger();
newRs = new RServer(rconn, rServer.outputHandler, rServer.errorGobbler,
rServer.port, rServer.password, pid);
}
this.shells.put(id, newRs);