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 read(RPCInputStream in) throws RPCException, IOException { kind.read(in); exeUnit = in.readInt(); instancePath.read(in); routineHdl = in.readInt(); external = in.readString(); }
public void write(RPCOutputStream out) throws RPCException, IOException { out.writeInt(routineScopeHnd); out.writeInt(lineNr); out.writeInt(exeUnitHnd); instancePath.write(out); kind.write(out); }
public void write(RPCOutputStream out) throws RPCException, IOException { kind.write(out); out.writeInt(exeUnit); instancePath.write(out); out.writeInt(routineHdl); out.writeString(external); }