| java.lang.Object de.anomic.kelondro.kelondroAbstractIOChunks
All known Subclasses: de.anomic.kelondro.kelondroBufferedIOChunks, de.anomic.kelondro.kelondroRAIOChunks,
kelondroAbstractIOChunks | abstract public class kelondroAbstractIOChunks (Code) | | |
Method Summary | |
abstract public void | close() | abstract public long | length() | public String | name() | public kelondroProfile | profile() | abstract public int | read(long pos, byte[] b, int off, int len) | public synchronized byte | readByte(long pos) | public synchronized void | readFully(long pos, byte[] b, int off, int len) | public synchronized int | readInt(long pos) | public synchronized long | readLong(long pos) | public synchronized short | readShort(long pos) | abstract public void | write(long pos, byte[] b, int off, int len) | public synchronized void | write(long pos, byte[] b) | public synchronized void | writeByte(long pos, int v) | public synchronized void | writeInt(long pos, int v) | public synchronized void | writeLong(long pos, long v) | public synchronized void | writeShort(long pos, int v) |
read | abstract public int read(long pos, byte[] b, int off, int len) throws IOException(Code) | | |
readFully | public synchronized void readFully(long pos, byte[] b, int off, int len) throws IOException(Code) | | |
write | abstract public void write(long pos, byte[] b, int off, int len) throws IOException(Code) | | |
writeByte | public synchronized void writeByte(long pos, int v) throws IOException(Code) | | |
writeLong | public synchronized void writeLong(long pos, long v) throws IOException(Code) | | |
writeShort | public synchronized void writeShort(long pos, int v) throws IOException(Code) | | |
|
|