Fixed a couple bugs in IdleStateHandler, caused by blind copy and paste

This commit is contained in:
Trustin Lee 2009-02-13 11:33:22 +00:00
parent c153fd5bd0
commit 5f2f072d69

View File

@ -237,7 +237,7 @@ public class IdleStateHandler extends SimpleChannelUpstreamHandler
writerIdleTimeout =
timer.newTimeout(this, writerIdleTimeMillis, TimeUnit.MILLISECONDS);
try {
channelIdle(ctx, IdleState.WRITER_IDLE, lastReadTime);
channelIdle(ctx, IdleState.WRITER_IDLE, lastWriteTime);
} catch (Throwable t) {
fireExceptionCaught(ctx, t);
}
@ -271,7 +271,7 @@ public class IdleStateHandler extends SimpleChannelUpstreamHandler
allIdleTimeout =
timer.newTimeout(this, allIdleTimeMillis, TimeUnit.MILLISECONDS);
try {
channelIdle(ctx, IdleState.ALL_IDLE, lastReadTime);
channelIdle(ctx, IdleState.ALL_IDLE, lastIoTime);
} catch (Throwable t) {
fireExceptionCaught(ctx, t);
}