encodeInt method

void encodeInt(
  1. ByteBuffer out,
  2. int val
)

Implementation

void encodeInt(nio.ByteBuffer out, final int val) {
  TFramedTransport.encodeWord(val, i32buf);
  out.putByte(i32buf, 0, 4);
}