writeLong
public void writeLong(long v) throws IOException;
Writes a long 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 longs in big-endian and little-endian formats respectively.
- Parameters
- v - the long to be written.
- Exceptions
- IOException - if there is a problem with IO.
uj14200_