| org.compass.needle.gigaspaces.store.GigaSpaceIndexInput
Method Summary | |
public void | close() | public long | getFilePointer() Returns the current position in this file, where the next read will
occur. | public long | length() The number of bytes in the file. | public byte | readByte() Reads and returns a single byte. | public void | readBytes(byte[] b, int offset, int len) Reads a specified number of bytes into an array at the specified
offset. | public void | seek(long pos) Sets current position in this file, where the next read will occur. |
length | public long length()(Code) | | The number of bytes in the file.
|
readByte | public byte readByte() throws IOException(Code) | | Reads and returns a single byte.
See Also: org.apache.lucene.store.IndexOutput.writeByte(byte) |
readBytes | public void readBytes(byte[] b, int offset, int len) throws IOException(Code) | | Reads a specified number of bytes into an array at the specified
offset.
Parameters: b - the array to read bytes into Parameters: offset - the offset in the array to start storing bytes Parameters: len - the number of bytes to read See Also: org.apache.lucene.store.IndexOutput.writeBytes(byte[]int) |
|
|