Added ChannelState.EXTENDED to support custom channel state like channel idleness

This commit is contained in:
Trustin Lee 2009-02-11 05:45:53 +00:00
parent 6e4f6b164c
commit 2ee72abaaf

View File

@ -110,4 +110,11 @@ public enum ChannelState {
* property
*/
INTEREST_OPS,
/**
* Represents a custom extension property which was not defined by the core
* channel state, whose detailed information should be retrieved by the
* return value of {@link ChannelStateEvent#getValue()}.
*/
EXTENDED;
}