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