|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<BufferState> org.eclipse.net4j.buffer.BufferState
Enumerates the internal states of an IBuffer
.
Enum Constant Summary | |
---|---|
DISPOSED
Indicates that the IBuffer can not be used anymore. |
|
GETTING
Indicates that the IBuffer can provide a ByteBuffer that can be used for getting data. |
|
INITIAL
Indicates that the IBuffer has just been provided by its IBufferProvider or that is has been used
and subsequently cleared . |
|
PUTTING
Indicates that the IBuffer can provide a ByteBuffer that can be used for putting data. |
|
READING_BODY
Indicates that the IBuffer is currently reading its body from a SocketChannel . |
|
READING_HEADER
Indicates that the IBuffer is currently reading its header from a SocketChannel . |
|
RELEASED
Indicates that the IBuffer is owned by its IBufferProvider . |
|
WRITING
Indicates that the IBuffer is currently writing its data to a SocketChannel . |
Method Summary | |
---|---|
static BufferState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BufferState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BufferState INITIAL
IBuffer
has just been provided by its IBufferProvider
or that is has been used
and subsequently cleared
.
A transition to PUTTING
can be triggered by calling IBuffer.startPutting(short)
once. If the
buffer is intended to be passed to an IChannel
later the
channel index
of that Channel has to be passed because it is
part of the buffer's header. A ByteBuffer
is returned that can be used for putting data.
A transition to GETTING
can be triggered by calling IBuffer.startGetting(SocketChannel)
repeatedly
until it finally returns a ByteBuffer
that can be used for getting data.
public static final BufferState PUTTING
IBuffer
can provide a ByteBuffer
that can be used for putting data.
A transition to WRITING
can be triggered by calling IBuffer.write(SocketChannel)
.
A transition to GETTING
can be triggered by calling IBuffer.flip()
.
A transition to INITIAL
can be triggered by calling IBuffer.clear()
.
public static final BufferState WRITING
IBuffer
is currently writing its data to a SocketChannel
.
Self transitions to WRITING
can be triggered by repeatedly calling IBuffer.write(SocketChannel)
until it returns true
.
A transition to INITIAL
can be triggered by calling IBuffer.clear()
.
public static final BufferState READING_HEADER
IBuffer
is currently reading its header from a SocketChannel
.
Transitions to READING_HEADER
, READING_BODY
or GETTING
can be triggered by repeatedly
calling IBuffer.startGetting(SocketChannel)
until it returns a ByteBuffer
that can be used for
getting data.
A transition to INITIAL
can be triggered by calling IBuffer.clear()
.
public static final BufferState READING_BODY
IBuffer
is currently reading its body from a SocketChannel
.
Transitions to READING_BODY
or GETTING
can be triggered by repeatedly calling
IBuffer.startGetting(SocketChannel)
until it returns a ByteBuffer
that can be used for getting
data.
A transition to INITIAL
can be triggered by calling IBuffer.clear()
.
public static final BufferState GETTING
IBuffer
can provide a ByteBuffer
that can be used for getting data.
A transition to INITIAL
can be triggered by calling IBuffer.clear()
.
public static final BufferState RELEASED
IBuffer
is owned by its IBufferProvider
.
public static final BufferState DISPOSED
IBuffer
can not be used anymore.
Method Detail |
---|
public static BufferState[] values()
for (BufferState c : BufferState.values()) System.out.println(c);
public static BufferState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |