@Override public boolean isAlive() throws IOException, InterruptedException { return process.isAlive(); }
@Override public void kill() throws IOException, InterruptedException { process.kill(); }
@Override public int join() throws IOException, InterruptedException { return process.join(); }
public ProcImpl(RemoteProcess process) { this.process = process; this.io = process.getIOtriplet(); }