Uses of Interface
org.jboss.netty.util.TimerTask
-
Packages that use TimerTask Package Description org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).org.jboss.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
.org.jboss.netty.handler.traffic Implementation of a Traffic Shaping Handler and Dynamic Statistics.
org.jboss.netty.util Utility classes used across multiple packages. -
-
Uses of TimerTask in org.jboss.netty.channel.socket.nio
Fields in org.jboss.netty.channel.socket.nio declared as TimerTask Modifier and Type Field Description private TimerTask
NioClientBoss. wakeupTask
-
Uses of TimerTask in org.jboss.netty.handler.timeout
Classes in org.jboss.netty.handler.timeout that implement TimerTask Modifier and Type Class Description private class
IdleStateHandler.AllIdleTimeoutTask
private class
IdleStateHandler.ReaderIdleTimeoutTask
private class
IdleStateHandler.WriterIdleTimeoutTask
private class
ReadTimeoutHandler.ReadTimeoutTask
private class
WriteTimeoutHandler.WriteTimeoutTask
-
Uses of TimerTask in org.jboss.netty.handler.traffic
Classes in org.jboss.netty.handler.traffic that implement TimerTask Modifier and Type Class Description (package private) class
AbstractTrafficShapingHandler.ReopenReadTimerTask
Class to implement setReadable at fix time.private static class
GlobalChannelTrafficCounter.MixedTrafficMonitoringTask
Class to implement monitoring at fix delay.private static class
TrafficCounter.TrafficMonitoringTask
Class to implement monitoring at fix delayFields in org.jboss.netty.handler.traffic declared as TimerTask Modifier and Type Field Description (package private) TimerTask
AbstractTrafficShapingHandler.ReadWriteStatus. reopenReadTimerTask
(package private) TimerTask
TrafficCounter. timerTask
Monitor created once in start() -
Uses of TimerTask in org.jboss.netty.util
Fields in org.jboss.netty.util declared as TimerTask Modifier and Type Field Description private TimerTask
HashedWheelTimer.HashedWheelTimeout. task
Methods in org.jboss.netty.util that return TimerTask Modifier and Type Method Description TimerTask
HashedWheelTimer.HashedWheelTimeout. getTask()
TimerTask
Timeout. getTask()
Returns theTimerTask
which is associated with this handle.Methods in org.jboss.netty.util with parameters of type TimerTask Modifier and Type Method Description Timeout
HashedWheelTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)
Timeout
Timer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)
Schedules the specifiedTimerTask
for one-time execution after the specified delay.Constructors in org.jboss.netty.util with parameters of type TimerTask Constructor Description HashedWheelTimeout(HashedWheelTimer timer, TimerTask task, long deadline)
-