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.
IOException
void put(byte b) throws IOException
IOException
void put(byte[] buf, int off, int len) throws IOException
IOException
void put(byte[] buf) throws IOException
IOException
void putShort(short s) throws IOException
IOException
void putInt(int i) throws IOException
IOException
void putLong(long l) throws IOException
IOException
void putChar(char c) throws IOException
IOException
Copyright © 2015. All rights reserved.