Areapublic interface MutableArea extends Area
| Modifier and Type | Method | 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 java.io.IOException
In a logging implementation, this may flush out the changes made to the area in a log.
java.io.IOExceptionvoid put(byte b) throws java.io.IOException
java.io.IOExceptionvoid put(byte[] buf,
int off,
int len)
throws java.io.IOException
java.io.IOExceptionvoid put(byte[] buf) throws java.io.IOException
java.io.IOExceptionvoid putShort(short s)
throws java.io.IOException
java.io.IOExceptionvoid putInt(int i)
throws java.io.IOException
java.io.IOExceptionvoid putLong(long l)
throws java.io.IOException
java.io.IOExceptionvoid putChar(char c)
throws java.io.IOException
java.io.IOExceptionCopyright © 2018. All rights reserved.