Timer.请参阅: 说明
| 接口 | 说明 |
|---|---|
| IdleStateEvent |
A
ChannelEvent that is triggered when a Channel has been idle
for a while. |
| 类 | 说明 |
|---|---|
| DefaultIdleStateEvent |
The default
IdleStateEvent implementation. |
| IdleStateAwareChannelHandler |
An extended
SimpleChannelHandler that adds the handler method for
an IdleStateEvent. |
| IdleStateAwareChannelUpstreamHandler |
An extended
SimpleChannelUpstreamHandler that adds the handler method
for an IdleStateEvent. |
| IdleStateHandler |
Triggers an
IdleStateEvent when a Channel has not performed
read, write, or both operation for a while. |
| ReadTimeoutHandler |
Raises a
ReadTimeoutException when no data was read within a certain
period of time. |
| WriteTimeoutHandler |
Raises a
WriteTimeoutException when no data was written within a
certain period of time. |
| 枚举 | 说明 |
|---|---|
| IdleState |
An
Enum that represents the idle state of a Channel. |
| 异常错误 | 说明 |
|---|---|
| ReadTimeoutException |
A
TimeoutException raised by ReadTimeoutHandler when no data
was read within a certain period of time. |
| TimeoutException |
A
TimeoutException when no data was either read or written within a
certain period of time. |
| WriteTimeoutException |
A
TimeoutException raised by WriteTimeoutHandler when no data
was written within a certain period of time. |
Timer.