Excecutor框架

java线程即是工作单元,也是执行机制。从JDK5开始,把工作单元与执行机制分离。工作单元包括Runnable和Callable,而执行机制由Excecutor框架提供。使用Excecutor框架让你可以创建不同的线程池。

Excecutor框架简介

1.1 两级调度模型

在HotSpot VM的线程模型中,java线程被一对一映射为本地操作系统线程。java启动时会创建一个本地操作系统线程;当java线程终止时这个操作系统线程也会被回收。
应用程序通过Excecutor框架控制上层任务的调度;而下层的调度由操作系统内核控制。

1.2 Executor结构与成员

1.2.1 Excecutor结构

Excecutor 的框架由三部分组成如下。
    1. 任务:Runnable接口和Callable接口。
    2. 任务的执行: 核心接口Executor,以及继承自Excecutor的ExcecutorService接口。实现类ThreadPoolExcecutor 和 ScheduleThreadPoolExcecutor .
    3. ThreadPoolExcecutor 异步计算的结果:接口Future和实现Future接口的FutureTask类。
接口和类的简介

  • Excecutor 是一个接口,它是Excecutor框架的基础。用来将任务的提交和执行分离开。
  • ThreadPoolExecutor  是线程池的核心实现类,用来执行被提交的任务
  • ScheduledThreadPoolExecutor是一个实现类,可以在给定的延时后运行命令,或者定期执行命令。它比Time人功能更加强大和灵活。
  • Runnable接口和Callable接口的实现类都可以被ThreadPoolExecutor 或 ScheduledThreadPoolExecutor执行。

1.2.2 Excecutor成员 

一、ThreadPoolExecutor 

ThreadPoolExecutor通常使用工厂类Executors来创建。Executors可以创建3种类型的ThreadPoolExecutor:SingleThreadExecutor、FixedThreadPool和CachedThreadPool,它们都实现了ExecutorService接口

1)FixedThreadPool。下面是Executors提供的,创建使用固定线程数的FixedThreadPool的API。


public static ExecutorService newFixedThreadPool(int nThreads)


public static ExecutorService newFixedThreadPool(int nThreads, ThreadFactorythreadFactory)


  FixedThreadPool适用于为了满足资源管理的需求,而需要限制当前线程数量的应用场景,它适用于负载比较重的服务器。

2)SingleThreadExecutor。下面是Executors提供的,创建使用单个线程的SingleThread-Executor的API。


public static ExecutorService newSingleThreadExecutor()


public static ExecutorService newSingleThreadExecutor(ThreadFactory threadFactory)


  SingleThreadExecutor适用于需要保证顺序地执行各个任务;并且在任意时间点,不会有多个线程是活动的应用场景。


 3)CachedThreadPool。下面是Executors提供的,创建一个会根据需要创建新线程的CachedThreadPool的API。


public static ExecutorService newCachedThreadPool()

public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory)



  CachedThreadPool是大小无界的线程池,适用于执行很多的短期异步任务的小程序,或者是负载较轻的服务器。

二、ScheduledThreadPoolExecutor

 ScheduledThreadPoolExecutor通常使用工厂类Executors来创建。Executors可以创建2种类型的ScheduledThreadPoolExecutor,如下。


 ·ScheduledThreadPoolExecutor。包含若干个线程的ScheduledThreadPoolExecutor。


 ·SingleThreadScheduledExecutor。只包含一个线程的ScheduledThreadPoolExecutor。 下面分别介绍这两种ScheduledThreadPoolExecutor。

下面是工厂类Executors提供的,创建固定个数线程的ScheduledThreadPoolExecutor的API。


public static ScheduledExecutorService newScheduledThreadPool(int corePoolSize)


public static ScheduledExecutorService newScheduledThreadPool(int corePoolSize,ThreadFactory threadFactory)



  ScheduledThreadPoolExecutor适用于需要多个后台线程执行周期任务,同时为了满足资源管理的需求而需要限制后台线程的数量的应用场景。下面是Executors提供的,创建单个线程的SingleThreadScheduledExecutor的API。


public static ScheduledExecutorService newSingleThreadScheduledExecutor()


public static ScheduledExecutorService newSingleThreadScheduledExecutor
(ThreadFactory threadFactory)


 

 SingleThreadScheduledExecutor适用于需要单个后台线程执行周期任务,同时需要保证顺序地执行各个任务的应用场景。


三、Future接口 

Future接口和实现Future接口的FutureTask类用来表示异步计算的结果。当我们把Runnable接口或Callable接口的实现类提交(submit)给ThreadPoolExecutor或ScheduledThreadPoolExecutor时,ThreadPoolExecutor或ScheduledThreadPoolExecutor会向我们返回一个FutureTask对象。下面是对应的API。


 <T> Future<T> submit(Callable<T> task)
<T> Future<T> submit(Runnable task, T result)
Future<> submit(Runnable task)


  有一点需要读者注意,到目前最新的JDK 8为止,Java通过上述API返回的是一个FutureTask对象。但从API可以看到,Java仅仅保证返回的是一个实现了Future接口的对象。在将来的JDK实现中,返回的可能不一定是FutureTask。


 四、Runnable接口和Callable接口

 Runnable接口和Callable接口的实现类,都可以被ThreadPoolExecutor或Scheduled-ThreadPoolExecutor执行。它们之间的区别是Runnable不会返回结果,而Callable可以返回结果。 除了可以自己创建实现Callable接口的对象外,还可以使用工厂类Executors来把一个Runnable包装成一个Callable。 下面是Executors提供的,把一个Runnable包装成一个Callable的API。


public static Callable<Object> callable(Runnable task)        // 假设返回对象Callable1


下面是Executors提供的,把一个Runnable和一个待返回的结果包装成一个Callable的API。  


public static <T> Callable<T> callable(Runnable task, T result)      // 假设返回对象Callable2


前面讲过,当我们把一个Callable对象(比如上面的Callable1或Callable2)提交给ThreadPoolExecutor或ScheduledThreadPoolExecutor执行时,submit()会向我们返回一个FutureTask对象。我们可以执行FutureTask.get()方法来等待任务执行完成。当任务成功完成后FutureTask.get()将返回该任务的结果。例如,如果提交的是对象Callable1,FutureTask.get()方法将返回null;如果提交的是对象Callable2,FutureTask.get()方法将返回result对象。 


实际使用中,我们通常通过工厂类Executors来创建相关的Executor,然后提交我们的任务。如:


public static void main(String[] args)  throw Exception{ 

      ExecutorService exec = Executors.newCachedThreadPool(3);

      exec.execute(new Runnable(){

            public void run(){

                System.out.println("test running");

            }

        }); 

    Thread.sleep(10000L);

      exec.shutdown();

    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值