public interface MutableArea extends Area
| Modifier and Type | Method and Description |
|---|---|
void |
checkOut()
Checks out all changes made to this area.
|
void |
put(byte b) |
void |
put(byte[] buf) |
void |
put(byte[] buf,
int off,
int len) |
void |
putChar(char c) |
void |
putInt(int i) |
void |
putLong(long l) |
void |
putShort(short s) |
void checkOut()
throws IOException
In a logging implementation, this may flush out the changes made to the area in a log.
IOExceptionvoid put(byte b) throws IOException
IOExceptionvoid put(byte[] buf,
int off,
int len)
throws IOException
IOExceptionvoid put(byte[] buf) throws IOException
IOExceptionvoid putShort(short s)
throws IOException
IOExceptionvoid putInt(int i)
throws IOException
IOExceptionvoid putLong(long l)
throws IOException
IOExceptionvoid putChar(char c)
throws IOException
IOExceptionCopyright © 2015. All rights reserved.