Uses of Interface
org.jboss.netty.util.Timeout
-
Packages that use Timeout 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.ssl SSL · TLS implementation based onSSLEngineorg.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 Timeout in org.jboss.netty.channel.socket.nio
Fields in org.jboss.netty.channel.socket.nio declared as Timeout Modifier and Type Field Description (package private) TimeoutNioClientSocketChannel. timoutTimer -
Uses of Timeout in org.jboss.netty.handler.ssl
Fields in org.jboss.netty.handler.ssl declared as Timeout Modifier and Type Field Description private TimeoutSslHandler. handshakeTimeout -
Uses of Timeout in org.jboss.netty.handler.timeout
Fields in org.jboss.netty.handler.timeout declared as Timeout Modifier and Type Field Description (package private) TimeoutIdleStateHandler.State. allIdleTimeout(package private) TimeoutIdleStateHandler.State. readerIdleTimeout(package private) TimeoutReadTimeoutHandler.State. timeoutprivate TimeoutWriteTimeoutHandler.TimeoutCanceller. timeout(package private) TimeoutIdleStateHandler.State. writerIdleTimeoutMethods in org.jboss.netty.handler.timeout with parameters of type Timeout Modifier and Type Method Description voidIdleStateHandler.AllIdleTimeoutTask. run(Timeout timeout)voidIdleStateHandler.ReaderIdleTimeoutTask. run(Timeout timeout)voidIdleStateHandler.WriterIdleTimeoutTask. run(Timeout timeout)voidReadTimeoutHandler.ReadTimeoutTask. run(Timeout timeout)voidWriteTimeoutHandler.WriteTimeoutTask. run(Timeout timeout)Constructors in org.jboss.netty.handler.timeout with parameters of type Timeout Constructor Description TimeoutCanceller(Timeout timeout) -
Uses of Timeout in org.jboss.netty.handler.traffic
Fields in org.jboss.netty.handler.traffic declared as Timeout Modifier and Type Field Description (package private) TimeoutAbstractTrafficShapingHandler. timeoutused in releaseExternalResources() to cancel the timer(package private) TimeoutTrafficCounter. timeoutused in stop() to cancel the timerprivate TimeoutChannelTrafficShapingHandler. writeTimeoutMethods in org.jboss.netty.handler.traffic with parameters of type Timeout Modifier and Type Method Description voidAbstractTrafficShapingHandler.ReopenReadTimerTask. run(Timeout timeoutArg)voidGlobalChannelTrafficCounter.MixedTrafficMonitoringTask. run(Timeout timeout)voidTrafficCounter.TrafficMonitoringTask. run(Timeout timeout) -
Uses of Timeout in org.jboss.netty.util
Classes in org.jboss.netty.util that implement Timeout Modifier and Type Class Description private static classHashedWheelTimer.HashedWheelTimeoutFields in org.jboss.netty.util with type parameters of type Timeout Modifier and Type Field Description private java.util.Set<Timeout>HashedWheelTimer.Worker. unprocessedTimeoutsMethods in org.jboss.netty.util that return Timeout Modifier and Type Method Description TimeoutHashedWheelTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)TimeoutTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)Schedules the specifiedTimerTaskfor one-time execution after the specified delay.Methods in org.jboss.netty.util that return types with arguments of type Timeout Modifier and Type Method Description java.util.Set<Timeout>HashedWheelTimer. stop()java.util.Set<Timeout>Timer. stop()Releases all resources acquired by thisTimerand cancels all tasks which were scheduled but not executed yet.java.util.Set<Timeout>HashedWheelTimer.Worker. unprocessedTimeouts()Methods in org.jboss.netty.util with parameters of type Timeout Modifier and Type Method Description voidTimerTask. run(Timeout timeout)Executed after the delay specified withTimer.newTimeout(TimerTask, long, TimeUnit).Method parameters in org.jboss.netty.util with type arguments of type Timeout Modifier and Type Method Description voidHashedWheelTimer.HashedWheelBucket. clearTimeouts(java.util.Set<Timeout> set)Clear this bucket and return all not expired / cancelledTimeouts.
-