Reads the specified number of integers from this stream into an integer array.
public int[] readInts( int count )
public void readInts( int[] buffer, int index, int count )
buffer
The array to read data into.
index
The starting index in the array.
count
The number of integers to read.
Returns an integer array containing the data that was read.
This method implements the IDataStream.readInts method. This method validates the arguments and then calls the readCore method to read the data.