Uses of Interface
io.netty.util.concurrent.Ticker
-
Packages that use Ticker Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of Ticker in io.netty.channel
Methods in io.netty.channel that return Ticker Modifier and Type Method Description Ticker
ManualIoEventLoop. ticker()
Constructors in io.netty.channel with parameters of type Ticker Constructor Description ManualIoEventLoop(IoEventLoopGroup parent, java.lang.Thread owningThread, IoHandlerFactory factory, Ticker ticker)
Create a newIoEventLoop
that is owned by the user and so needs to be driven by the user with the givenThread
. -
Uses of Ticker in io.netty.util.concurrent
Subinterfaces of Ticker in io.netty.util.concurrent Modifier and Type Interface Description interface
MockTicker
A fakeTicker
that allows the caller control the flow of time.Methods in io.netty.util.concurrent that return Ticker Modifier and Type Method Description static Ticker
Ticker. systemTicker()
Returns the singletonTicker
that returns the values from the real system clock source.Ticker
AbstractScheduledEventExecutor. ticker()
default Ticker
EventExecutorGroup. ticker()
The ticker for this executor.
-