Interface IByteBufferStorageWriter
public interface IByteBufferStorageWriter
Acts as a writer over a
IByteBufferStorage- Since:
- 7.1
- Author:
- eitany
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()longvoidmovePosition(long offset) voidsetPosition(long position) voidwriteByte(byte value) voidwriteBytes(byte[] array, int offset, int length) voidwriteInt(int value) voidwriteLong(long value)
-
Method Details
-
movePosition
void movePosition(long offset) -
writeByte
- Throws:
ByteBufferStorageException
-
writeBytes
void writeBytes(byte[] array, int offset, int length) -
writeInt
void writeInt(int value) -
setPosition
void setPosition(long position) -
getPosition
long getPosition() -
writeLong
void writeLong(long value) -
close
void close()
-