Reads a byte array from the bytes message stream.
If the length of array value is less than the number of bytes remaining to
be read from the stream, the array should be filled. A subsequent call reads
the next increment, and so on.
If the number of bytes remaining in the stream is less than the length of array
value, the bytes should be read into the array. The return value of the total number
of bytes read will be less than the length of the array, indicating that there are
no more bytes left to be read from the stream. The next read of the stream returns -1.
Namespace:
Apache.NMS
Assembly:
Apache.NMS (in Apache.NMS.dll)
Syntax
Visual Basic |
---|
Function ReadBytes ( _
value As Byte() _
) As Integer |
JavaScript |
---|
function readBytes(value); |
Parameters
- value
- Type: array<System..::..Byte>[]()[][]
The byte array that will be used as a buffer to read into.
Return Value
A
Int32
The number of bytes read into the passed byte array, or -1 if there are no more
bytes left to be read from the stream.
Exceptions
See Also