decode static method

XdrSCPBallot decode(
  1. XdrDataInputStream stream
)

Implementation

static XdrSCPBallot decode(XdrDataInputStream stream) {
  XdrUint32 counter = XdrUint32.decode(stream);
  XdrValue value = XdrValue.decode(stream);
  return XdrSCPBallot(counter, value);
}