public abstract class SubStoreWriter
extends Object
StructuredStore. A sub-store
provides most of the interface of a RandomAccessFile, and takes care of
writing to the correct subset of the main StructuredStore.| Constructor and Description |
|---|
SubStoreWriter() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
close() |
abstract long |
length() |
void |
write(byte[] b) |
abstract void |
write(byte[] b,
int off,
int len) |
abstract void |
writeByte(int b) |
void |
writeChars(String s) |
abstract void |
writeInt(int v) |
public void write(byte[] b)
throws IOException
IOExceptionpublic abstract void write(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic abstract void writeByte(int b)
throws IOException
IOExceptionpublic void writeChars(String s)
throws IOException
IOExceptionpublic abstract void writeInt(int v)
throws IOException
IOExceptionpublic abstract long length()
throws IOException
IOExceptionpublic abstract void close()
throws IOException
IOException