Timer.请参阅: 说明
| 类 | 说明 |
|---|---|
| IdleStateEvent |
A user event triggered by
IdleStateHandler when a Channel is idle. |
| 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 a write operation cannot finish in 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 a write operation
cannot finish in a certain period of time. |
Timer.