public void read(RPCInputStream in) throws RPCException, IOException { routineScopeHnd = in.readInt(); lineNr = in.readInt(); exeUnitHnd = in.readInt(); instancePath.read(in); kind.read(in); }
public void write(RPCOutputStream out) throws RPCException, IOException { out.writeInt(routineScopeHnd); out.writeInt(lineNr); out.writeInt(exeUnitHnd); instancePath.write(out); kind.write(out); }