public interface NosqlFile
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
int |
getBlockSize() |
long |
getChecksum() |
long |
getFileLength() |
java.lang.String |
getFileName() |
short |
getFileNumber() |
long |
getLastModified() |
byte |
readByte(long position) |
void |
readBytes(long position,
byte[] b,
int offset,
int length) |
int |
readInt(long position) |
long |
readLong(long position) |
void |
resetChecksum() |
void |
setFileLength(long fileLength) |
void |
setFileName(java.lang.String fileName) |
void |
setLastModified(long currentTime) |
void |
write(long position,
byte b) |
void |
write(long position,
byte[] b,
int offset,
int length) |
java.lang.String getFileName()
void setFileName(java.lang.String fileName)
short getFileNumber()
long getFileLength()
void setFileLength(long fileLength)
long getLastModified()
void setLastModified(long currentTime)
void write(long position,
byte b)
throws java.io.IOException
java.io.IOExceptionvoid write(long position,
byte[] b,
int offset,
int length)
throws java.io.IOException
java.io.IOExceptionvoid flush()
throws java.io.IOException
java.io.IOExceptionbyte readByte(long position)
throws java.io.IOException
java.io.IOExceptionvoid readBytes(long position,
byte[] b,
int offset,
int length)
throws java.io.IOException
java.io.IOExceptionint readInt(long position)
throws java.io.IOException
java.io.IOExceptionlong readLong(long position)
throws java.io.IOException
java.io.IOExceptionint getBlockSize()
long getChecksum()
void resetChecksum()
void close()