EventLoopGroup

«interface» Executor execute(Runnable cmd) : void «interface» ExecutorService shutdown() : void shutdownNow() : List isShutdown() : boolean submit(Callable task) : Future «interface» ScheduledExecutorService schedule(Runnable cmd, long delay, TimeUnit unit) : ScheduledFuture scheduleAtFixedRate(Runnable cmd, long delay, long period, TimeUnit unit) : ScheduledFuture scheduleWithFixedDelay(Runnable cmd, long delay, long period, TimeUnit unit) : ScheduledFuture «interface» EventExecutorGroup next() : EventExecutor iterator() : Iterator Iterable «interface» EventExecutor next() : EventExecutorGroup parent() : EventExecutorGroup inEventLoop() : boolean newPromise() : Promise newSucceededFuture(V result) : Future newFailedFure(Throwable cause) : Future AbstractEventExecutorGroup MultithreadEventExecutorGroup MultithreadEventLoopGroup «interface» EventLoopGroup next() : EventLoop register(ChannelPromise promise) : ChannelFuture register(Channel ch, ChannelPromise p) : ChannelFuture «interface» EventLoop parent() : EventLoopGroup DefaultEventLoopGroup EpollEventLoopGroup NioEventLoopGroup KQueueEventLoopGroup

你可能感兴趣的:(java,netty)