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