コード例 #1
0
 public void read(RPCInputStream in) throws RPCException, IOException {
   status.read(in);
   retVal = in.readBool();
 }
コード例 #2
0
 public void write(RPCOutputStream out) throws RPCException, IOException {
   status.write(out);
   out.writeBool(retVal);
 }