writeFloat

 

public void writeFloat(float value) throws JMSException;

Converts the float argument to an int using the floatToIntBits() method in class Float , and then writes that int value to the stream message as a 4-byte quantity, high byte first.

Parameters

  • value - the float value to be written.

Exceptions

  • JMSException - with reason

    • MQJMS_EXCEPTION_MESSAGE_NOT_WRITABLE

    • MQJMS_EXCEPTION_RESOURCE_ALLOCATION


uj26060_