* More documentation for developers

This commit is contained in:
Trustin Lee 2009-12-17 10:21:34 +00:00
parent 65634bda11
commit 15aded0df7
2 changed files with 6 additions and 0 deletions

View File

@ -206,6 +206,9 @@ public class IdleStateHandler extends SimpleChannelUpstreamHandler
// this.channelOpen() will not be invoked.
// We have to initialize here instead.
initialize(ctx);
} else {
// channelOpen event has not been fired yet.
// this.channelOpen() will be invoked and initialization will occur there.
}
}

View File

@ -125,6 +125,9 @@ public class ReadTimeoutHandler extends SimpleChannelUpstreamHandler
// this.channelOpen() will not be invoked.
// We have to initialize here instead.
initialize(ctx);
} else {
// channelOpen event has not been fired yet.
// this.channelOpen() will be invoked and initialization will occur there.
}
}