diff --git a/src/main/java/org/jboss/netty/channel/ChannelState.java b/src/main/java/org/jboss/netty/channel/ChannelState.java index b0e93c61fd..21028c31e9 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelState.java +++ b/src/main/java/org/jboss/netty/channel/ChannelState.java @@ -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; }