resizeBuffer

 

public void resizeBuffer(int size) throws IOException;

Indicates to the MQMessage class the size of buffer that might be required. If the message currently contains message data and the new size is less than the current size, the message data is truncated. If this message is subsequently used with MQQueue.get(), then this is the size of buffer allocated for the get request.

Exceptions

  • IOException - if there is a problem with IO.


uj13990_