decode method

XdrUint64 decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrUint64 decode(XdrDataInputStream stream) {
  XdrUint64 decodedUint64 = XdrUint64();
  decodedUint64.uint64 = stream.readLong();
  return decodedUint64;
}