Package org.jboss.netty.handler.timeout
Class DefaultIdleStateEvent
- java.lang.Object
-
- org.jboss.netty.handler.timeout.DefaultIdleStateEvent
-
- All Implemented Interfaces:
ChannelEvent
,IdleStateEvent
public class DefaultIdleStateEvent extends Object implements IdleStateEvent
The defaultIdleStateEvent
implementation.
-
-
Constructor Summary
Constructors Constructor Description DefaultIdleStateEvent(Channel channel, IdleState state, long lastActivityTimeMillis)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Channel
getChannel()
Returns theChannel
which is associated with this event.ChannelFuture
getFuture()
Returns theChannelFuture
which is associated with this event.long
getLastActivityTimeMillis()
Returns the last time when I/O occurred in milliseconds.IdleState
getState()
Returns the detailed idle state.String
toString()
-
-
-
Method Detail
-
getChannel
public Channel getChannel()
Description copied from interface:ChannelEvent
Returns theChannel
which is associated with this event.- Specified by:
getChannel
in interfaceChannelEvent
-
getFuture
public ChannelFuture getFuture()
Description copied from interface:ChannelEvent
Returns theChannelFuture
which is associated with this event. If this event is an upstream event, this method will always return aSucceededChannelFuture
because the event has occurred already. If this event is a downstream event (i.e. I/O request), the returned future will be notified when the I/O request succeeds or fails.- Specified by:
getFuture
in interfaceChannelEvent
-
getState
public IdleState getState()
Description copied from interface:IdleStateEvent
Returns the detailed idle state.- Specified by:
getState
in interfaceIdleStateEvent
-
getLastActivityTimeMillis
public long getLastActivityTimeMillis()
Description copied from interface:IdleStateEvent
Returns the last time when I/O occurred in milliseconds.- Specified by:
getLastActivityTimeMillis
in interfaceIdleStateEvent
-
-