Beispiel #1
0
 /**
  * Encodes -- that is: serializes -- a XDR char into a XDR stream in compliance to RFC 1832.
  *
  * @throws OncRpcException if an ONC/RPC error occurs.
  * @throws IOException if an I/O error occurs.
  */
 public void xdrEncode(XdrEncodingStream xdr) throws OncRpcException, IOException {
   xdr.xdrEncodeByte((byte) value);
 }