writeInt

 

public void writeInt(int v) throws IOException;

Writes an int into the message buffer at the current position. The behavior of this method is determined by encoding.

Values of MQC.MQENC_INTEGER_NORMAL and MQC.MQENC_INTEGER_REVERSED write integers in big-endian and little-endian formats respectively.

Parameters

  • v - the int to be written.

Exceptions

  • IOException - if there is a problem with IO.


uj14160_