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 onSSLEngine
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 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) Timeout
NioClientSocketChannel. 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 Timeout
SslHandler. 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) Timeout
IdleStateHandler.State. allIdleTimeout
(package private) Timeout
IdleStateHandler.State. readerIdleTimeout
(package private) Timeout
ReadTimeoutHandler.State. timeout
private Timeout
WriteTimeoutHandler.TimeoutCanceller. timeout
(package private) Timeout
IdleStateHandler.State. writerIdleTimeout
Methods in org.jboss.netty.handler.timeout with parameters of type Timeout Modifier and Type Method Description void
IdleStateHandler.AllIdleTimeoutTask. run(Timeout timeout)
void
IdleStateHandler.ReaderIdleTimeoutTask. run(Timeout timeout)
void
IdleStateHandler.WriterIdleTimeoutTask. run(Timeout timeout)
void
ReadTimeoutHandler.ReadTimeoutTask. run(Timeout timeout)
void
WriteTimeoutHandler.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) Timeout
AbstractTrafficShapingHandler. timeout
used in releaseExternalResources() to cancel the timer(package private) Timeout
TrafficCounter. timeout
used in stop() to cancel the timerprivate Timeout
ChannelTrafficShapingHandler. writeTimeout
Methods in org.jboss.netty.handler.traffic with parameters of type Timeout Modifier and Type Method Description void
AbstractTrafficShapingHandler.ReopenReadTimerTask. run(Timeout timeoutArg)
void
GlobalChannelTrafficCounter.MixedTrafficMonitoringTask. run(Timeout timeout)
void
TrafficCounter.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 class
HashedWheelTimer.HashedWheelTimeout
Fields in org.jboss.netty.util with type parameters of type Timeout Modifier and Type Field Description private java.util.Set<Timeout>
HashedWheelTimer.Worker. unprocessedTimeouts
Methods in org.jboss.netty.util that return Timeout 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.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 thisTimer
and 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 void
TimerTask. 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 void
HashedWheelTimer.HashedWheelBucket. clearTimeouts(java.util.Set<Timeout> set)
Clear this bucket and return all not expired / cancelledTimeout
s.
-