Netty4学习笔记(6)-- NioEventLoop继承层次结构

本文详细探讨了Netty中NioEventLoop的继承结构,从Executor接口开始,逐步剖析ExecutorService、ScheduledExecutorService、AbstractExecutorService、EventExecutorGroup、EventExecutor等接口与类的作用。特别关注了EventLoopGroup、AbstractEventExecutor、SingleThreadEventExecutor的特性。最后,简要介绍了SingleThreadEventLoop和NioEventLoop,尤其是NioEventLoop的run()方法执行流程,尽管NioEventLoop的复杂性使得完全理解其工作原理需要更多的时间。
摘要由CSDN通过智能技术生成

前一篇文章画了一张巨大的类图,但是只重点分析了NioEventLoopGroup的继承层次,这篇文章来看看NioEventLoop的继承层次。


从Executor接口说起

public interface Executor {
    void execute(Runnable command);
}
Executor接口只有一个方法,用来执行一个命令。但是什么时候执行,在哪个线程里执行,得看具体的实现。


ExecutorService接口

ExecutorService接口扩展了Executor接口,添加了两组方法,一组用来终止Executor的执行:

void shutdown();
List<Runnable> shutdownNow();
boolean isShutdown();
boolean isTerminated();
boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException;
另一组扩展Executor的执行能力,让它可以提交和执行Callable任务:

<T> Future<T> submit(Callable<T> task);
<T> Future<T> submit(Runnable task, T result);
Future<?> submit(Runnable task);
<T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException;
<T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException;
<T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException;
<T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException;


ScheduledExecutorService接口

ScheduledExecutorService接口扩展ExecutorService接口,添加了调度能力:


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值