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.channel.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.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 TickerManualIoEventLoop. 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 newIoEventLoopthat is owned by the user and so needs to be driven by the user with the givenThread. -
Uses of Ticker in io.netty.channel.embedded
Methods in io.netty.channel.embedded with parameters of type Ticker Modifier and Type Method Description EmbeddedChannel.BuilderEmbeddedChannel.Builder. ticker(Ticker ticker)Configure a custom ticker for this event loop. -
Uses of Ticker in io.netty.util.concurrent
Subinterfaces of Ticker in io.netty.util.concurrent Modifier and Type Interface Description interfaceMockTickerA fakeTickerthat allows the caller control the flow of time.Methods in io.netty.util.concurrent that return Ticker Modifier and Type Method Description static TickerTicker. systemTicker()Returns the singletonTickerthat returns the values from the real system clock source.TickerAbstractScheduledEventExecutor. ticker()default TickerEventExecutorGroup. ticker()The ticker for this executor.
-