一. future
jdk 5引入了future模式。future接口是java多线程future模式的实现,在java.util.concurrent包中,可以来进行异步计算。
future模式是多线程设计常用的一种设计模式。future模式可以理解成:我有一个任务,提交给了future,future替我完成这个任务。期间我自己可以去做任何想做的事情。一段时间之后,我就便可以从future那儿取出结果。
future的接口很简单,只有五个方法。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public interface future<v> { boolean cancel( boolean mayinterruptifrunning); boolean iscancelled(); boolean isdone(); v get() throws interruptedexception, executionexception; v get( long timeout, timeunit unit) throws interruptedexception, executionexception, timeoutexception; } |
future接口的方法介绍如下:
- boolean cancel (boolean mayinterruptifrunning) 取消任务的执行。参数指定是否立即中断任务执行,或者等等任务结束
- boolean iscancelled () 任务是否已经取消,任务正常完成前将其取消,则返回 true
- boolean isdone () 任务是否已经完成。需要注意的是如果任务正常终止、异常或取消,都将返回true
- v get () throws interruptedexception, executionexception 等待任务执行结束,然后获得v类型的结果。interruptedexception 线程被中断异常, executionexception任务执行异常,如果任务被取消,还会抛出cancellationexception
- v get (long timeout, timeunit unit) throws interruptedexception, executionexception, timeoutexception 同上面的get功能一样,多了设置超时时间。参数timeout指定超时时间,uint指定时间的单位,在枚举类timeunit中有相关的定义。如果计 算超时,将抛出timeoutexception
一般情况下,我们会结合callable和future一起使用,通过executorservice的submit方法执行callable,并返回future。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
executorservice executor = executors.newcachedthreadpool(); future<string> future = executor.submit(() -> { //lambda 是一个 callable, 提交后便立即执行,这里返回的是 futuretask 实例 system.out.println( "running task" ); thread.sleep( 10000 ); return "return task" ; }); try { thread.sleep( 1000 ); } catch (interruptedexception e) { } system.out.println( "do something else" ); //前面的的 callable 在其他线程中运行着,可以做一些其他的事情 try { system.out.println(future.get()); //等待 future 的执行结果,执行完毕之后打印出来 } catch (interruptedexception e) { } catch (executionexception e) { } finally { executor.shutdown(); } |
比起future.get(),其实更推荐使用get (long timeout, timeunit unit) 方法,设置了超时时间可以防止程序无限制的等待future的结果。
二. completablefuture介绍
2.1 future模式的缺点
future虽然可以实现获取异步执行结果的需求,但是它没有提供通知的机制,我们无法得知future什么时候完成。
要么使用阻塞,在future.get()的地方等待future返回的结果,这时又变成同步操作。要么使用isdone()轮询地判断future是否完成,这样会耗费cpu的资源。
2.2 completablefuture介绍
netty、guava分别扩展了java 的 future 接口,方便异步编程。
java 8新增的completablefuture类正是吸收了所有google guava中listenablefuture和settablefuture的特征,还提供了其它强大的功能,让java拥有了完整的非阻塞编程模型:future、promise 和 callback(在java8之前,只有无callback 的future)。
completablefuture能够将回调放到与任务不同的线程中执行,也能将回调作为继续执行的同步函数,在与任务相同的线程中执行。它避免了传统回调最大的问题,那就是能够将控制流分离到不同的事件处理器中。
completablefuture弥补了future模式的缺点。在异步的任务完成后,需要用其结果继续操作时,无需等待。可以直接通过thenaccept、thenapply、thencompose等方式将前面异步处理的结果交给另外一个异步事件处理线程来处理。
三. completablefuture特性
3.1 completablefuture的静态工厂方法
方法名 | 描述 |
---|---|
runasync(runnable runnable) | 使用forkjoinpool.commonpool()作为它的线程池执行异步代码。 |
runasync(runnable runnable, executor executor) | 使用指定的thread pool执行异步代码。 |
supplyasync(supplier<u> supplier) | 使用forkjoinpool.commonpool()作为它的线程池执行异步代码,异步操作有返回值 |
supplyasync(supplier<u> supplier, executor executor) | 使用指定的thread pool执行异步代码,异步操作有返回值 |
runasync 和 supplyasync 方法的区别是runasync返回的completablefuture是没有返回值的。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
completablefuture< void > future = completablefuture.runasync(() -> { system.out.println( "hello" ); }); try { future.get(); } catch (interruptedexception e) { e.printstacktrace(); } catch (executionexception e) { e.printstacktrace(); } system.out.println( "completablefuture" ); |
而supplyasync返回的completablefuture是由返回值的,下面的代码打印了future的返回值。
1
2
3
4
5
6
7
8
9
10
11
|
completablefuture<string> future = completablefuture.supplyasync(() -> "hello" ); try { system.out.println(future.get()); } catch (interruptedexception e) { e.printstacktrace(); } catch (executionexception e) { e.printstacktrace(); } system.out.println( "completablefuture" ); |
3.2 completable
方法名 | 描述 |
---|---|
complete(t t) | 完成异步执行,并返回future的结果 |
completeexceptionally(throwable ex) | 异步执行不正常的结束 |
future.get()在等待执行结果时,程序会一直block,如果此时调用complete(t t)会立即执行。
1
2
3
4
5
6
7
8
9
10
11
|
completablefuture<string> future = completablefuture.supplyasync(() -> "hello" ); future.complete( "world" ); try { system.out.println(future.get()); } catch (interruptedexception e) { e.printstacktrace(); } catch (executionexception e) { e.printstacktrace(); } |
执行结果:
world
可以看到future调用complete(t t)会立即执行。但是complete(t t)只能调用一次,后续的重复调用会失效。
如果future已经执行完毕能够返回结果,此时再调用complete(t t)则会无效。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
completablefuture<string> future = completablefuture.supplyasync(() -> "hello" ); try { thread.sleep( 5000 ); } catch (interruptedexception e) { e.printstacktrace(); } future.complete( "world" ); try { system.out.println(future.get()); } catch (interruptedexception e) { e.printstacktrace(); } catch (executionexception e) { e.printstacktrace(); } |
执行结果:
hello
如果使用completeexceptionally(throwable ex)则抛出一个异常,而不是一个成功的结果。
1
2
3
4
5
6
7
8
9
10
11
|
completablefuture<string> future = completablefuture.supplyasync(() -> "hello" ); future.completeexceptionally( new exception()); try { system.out.println(future.get()); } catch (interruptedexception e) { e.printstacktrace(); } catch (executionexception e) { e.printstacktrace(); } |
执行结果:
java.util.concurrent.executionexception: java.lang.exception
...
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。