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