readLong method
Converts eight bytes from the read buffer to a signed long.
The byte order is big-endian.
@return the long value.
Implementation
int readLong() {
this._bufferPosition += 8;
return Deserializer.getLong(this._bufferData, this._bufferPosition - 8);
}