欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java8 CompletableFuture 编程

程序员文章站 2022-07-05 08:28:33
一、简介  所谓异步调用其实就是实现一个无需等待被调用函数的返回值而让操作继续运行的方法。在 Java 语言中,简单的讲就是另启一个线程来完成调用中的部分计算,使调用继续运行或返回,而不需要等待计算结果。但调用者仍需要取线程的计算结果。  JDK5新增了 Future 接口,用于 ......

一、简介

 所谓异步调用其实就是实现一个无需等待被调用函数的返回值而让操作继续运行的方法。在 java 语言中,简单的讲就是另启一个线程来完成调用中的部分计算,使调用继续运行或返回,而不需要等待计算结果。但调用者仍需要取线程的计算结果。

 jdk5新增了 future 接口,用于描述一个异步计算的结果。虽然 future 以及相关使用方法提供了异步执行任务的能力,但是对于结果的获取却是很不方便,只能通过阻塞或者轮询的方式得到任务的结果。阻塞的方式显然和我们的异步编程的初衷相违背,轮询的方式又会耗费无谓的 cpu 资源,而且也不能及时地得到计算结果。

private static final executorservice pool = executors.newfixedthreadpool(task_threshold, new threadfactory() {
        atomicinteger atomicinteger = new atomicinteger(0);

        @override
        public thread newthread(runnable r) {
            return new thread(r, "demo15-" + atomicinteger.incrementandget());
        }
    });

    public static void main(string[] args) throws executionexception, interruptedexception {
        future<integer> submit = pool.submit(() -> 123);
        // 1. get() 方法用户返回计算结果,如果计算还没有完成,则在get的时候会进行阻塞,直到获取到结果为止
        integer get = submit.get();
        // 2. isdone() 方法用于判断当前future是否执行完成。
        boolean done = submit.isdone();
        // 3. cancel(boolean mayinterruptifrunning) 取消当前线程的执行。参数表示是否在线程执行的过程中阻断。
        boolean cancel = submit.cancel(true);
        // 4. iscancelled() 判断当前task是否被取消.
        boolean cancelled = submit.iscancelled();
        // 5. invokeall 批量执行任务
        callable<string> callable = () -> "hello future";
        list<callable<string>> callables = lists.newarraylist(callable, callable, callable, callable);
        list<future<string>> futures = pool.invokeall(callables);
    }

 在java8中,completablefuture 提供了非常强大的 future 的扩展功能,可以帮助我们简化异步编程的复杂性,并且提供了函数式编程的能力,可以通过回调的方式处理计算结果,也提供了转换和组合 completablefuture 的方法。

tips: completionstage 代表异步计算过程中的某一个阶段,一个阶段完成以后可能会触发另外一个阶段。

二、completablefuture 使用

1. runasync、supplyasync

// 无返回值
public static completablefuture<void> runasync(runnable runnable)
public static completablefuture<void> runasync(runnable runnable, executor executor)
// 有返回值
public static <u> completablefuture<u> supplyasync(supplier<u> supplier)
public static <u> completablefuture<u> supplyasync(supplier<u> supplier, executor executor)

runasync、supplyasync 方法是 completablefuture 提供的创建异步操作的方法。需要注意的是,如果没有指定 executor 作为线程池,将会使用forkjoinpool.commonpool() 作为它的线程池执行异步代码;如果指定线程池,则使用指定的线程池运行。以下所有的方法都类同。

public class demo1 {

    public static void main(string[] args) throws executionexception, interruptedexception {
        completablefuture<void> runasync = completablefuture.runasync(() -> system.out.println(123));

        completablefuture<string> supplyasync = completablefuture.supplyasync(() -> "completablefuture");
        system.out.println(supplyasync.get());
    }
}


2. whencomplete、exceptionally

// 执行完成时,当前任务的线程执行继续执行 whencomplete 的任务。
public completablefuture<t> whencomplete(biconsumer<? super t,? super throwable> action)
// 执行完成时,把 whencompleteasync 这个任务提交给线程池来进行执行。
public completablefuture<t> whencompleteasync(biconsumer<? super t,? super throwable> action)
public completablefuture<t> whencompleteasync(biconsumer<? super t,? super throwable> action, executor executor)
public completablefuture<t> exceptionally(function<throwable,? extends t> fn)

当 completablefuture 的计算完成时,会执行 whencomplete 方法;当 completablefuture 计算中抛出异常时,会执行 exceptionally 方法。

public class demo2 {

    public static void main(string[] args) throws executionexception, interruptedexception {

        completablefuture<integer> runasync = completablefuture.supplyasync(() -> 123456);
        runasync.whencomplete((t, throwable) -> {
            system.out.println(t);
            if (throwable != null) {
                throwable.printstacktrace();
            }
        });
        runasync.whencompleteasync((t, throwable) -> {
            system.out.println(t);
            if (throwable != null) {
                throwable.printstacktrace();
            }
        });
        runasync.exceptionally((throwable) -> {
            if (throwable != null) {
                throwable.printstacktrace();
            }
            return null;
        });
        timeunit.seconds.sleep(2);
    }
}


3. thenapply、handle

// t:上一个任务返回结果的类型
// u:当前任务的返回值类型

public <u> completablefuture<u> thenapply(function<? super t,? extends u> fn)
public <u> completablefuture<u> thenapplyasync(function<? super t,? extends u> fn)
public <u> completablefuture<u> thenapplyasync(function<? super t,? extends u> fn, executor executor)

public <u> completionstage<u> handle(bifunction<? super t, throwable, ? extends u> fn);
public <u> completionstage<u> handleasync(bifunction<? super t, throwable, ? extends u> fn);
public <u> completionstage<u> handleasync(bifunction<? super t, throwable, ? extends u> fn,executor executor);

当一个线程依赖另一个线程时,可以使用 thenapply 方法来把这两个线程串行化

handle 方法和 thenapply 方法处理方式基本一样。不同的是 handle 是在任务完成后再执行,还可以处理异常的任务。thenapply 只可以执行正常的任务,任务出现异常则不执行 thenapply 方法。

public class demo3 {

    public static void main(string[] args) throws executionexception, interruptedexception {
        // thenapply
        completablefuture<integer> thenapply = completablefuture.supplyasync(() -> 123).thenapply(t -> t * t);
        system.out.println(thenapply.get());

       // handle
        completablefuture<integer> handle = completablefuture.supplyasync(() -> {
            int i = 10 / 0;
            return new random().nextint(10);
        }).handle((t, throwable) -> {
            if (throwable != null) {
                throwable.printstacktrace();
                return -1;
            }
            return t * t;
        });
        system.out.println(handle.get());
    }
}


4. thenaccept、thenrun

public completionstage<void> thenaccept(consumer<? super t> action);
public completionstage<void> thenacceptasync(consumer<? super t> action);
public completionstage<void> thenacceptasync(consumer<? super t> action,executor executor);

public completionstage<void> thenrun(runnable action);
public completionstage<void> thenrunasync(runnable action);
public completionstage<void> thenrunasync(runnable action,executor executor);

thenaccept 接收任务的处理结果,并消费处理。无返回结果。

thenrun 跟 thenaccept 方法不一样的是,不关心任务的处理结果。只要上面的任务执行完成,就开始执行 thenrun。

public class demo4 {

    public static void main(string[] args) {
        // thenaccept
        completablefuture<void> thenaccept = completablefuture.supplyasync(() -> new random().nextint(10)).thenaccept(system.out::println);

       // thenrun
        completablefuture<void> thenrun = completablefuture.supplyasync(() -> new random().nextint(10)).thenrun(() -> system.out.println(123));
    }
}


5. thencombine、thenacceptboth

 // t 表示第一个 completionstage 的返回结果类型
 // u 表示第二个 completionstage 的返回结果类型
 // v表示 thencombine/thenacceptboth 处理结果类型
public <u,v> completionstage<v> thencombine(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn);
public <u,v> completionstage<v> thencombineasync(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn);
public <u,v> completionstage<v> thencombineasync(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn,executor executor);

public <u,v> completionstage<v> thencombine(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn);
public <u,v> completionstage<v> thencombineasync(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn);
public <u,v> completionstage<v> thencombineasync(completionstage<? extends u> other,bifunction<? super t,? super u,? extends v> fn,executor executor);

thencombine、thenacceptboth 都是用来合并任务 —— 等待两个 completionstage 的任务都执行完成后,把两个任务的结果一并来处理。区别在于 thencombine 有返回值;thenacceptboth 无返回值。

public class demo5 {

    public static void main(string[] args) throws executionexception, interruptedexception {
        // thencombine
        completablefuture<string> thencombine = completablefuture.supplyasync(() -> new random().nextint(10))
                .thencombine(completablefuture.supplyasync(() -> "str"),
                        // 第一个参数是第一个 completionstage 的处理结果
                        // 第二个参数是第二个 completionstage 的处理结果
                        (i, s) -> i + s
                );
        system.out.println(thencombine.get());

        // thenacceptboth 
        completablefuture<void> thenacceptboth = completablefuture.supplyasync(() -> new random().nextint(10))
                .thenacceptboth(completablefuture.supplyasync(() -> "str"), 
                        (i, s) -> system.out.println(i + s));
    }
}


6. applytoeither、accepteither、runaftereither、runafterboth

  • applytoeither:两个 completionstage,谁执行返回的结果快,就用那个 completionstage 的结果进行下一步的处理,有返回值。
  • accepteither:两个 completionstage,谁执行返回的结果快,就用那个 completionstage 的结果进行下一步的处理,无返回值。
  • runaftereither:两个 completionstage,任何一个完成了,都会执行下一步的操作(runnable),无返回值。
  • runafterboth:两个 completionstage,都完成了计算才会执行下一步的操作(runnable),无返回值。

由于这几个方法含义相近,使用更加类似,我们就以 applytoeither 来介绍...

// t 两个 completionstage 组合运算后的结果类型
// u 下一步处理运算的结果返回值类型
public <u> completionstage<u> applytoeither(completionstage<? extends t> other,function<? super t, u> fn);
public <u> completionstage<u> applytoeitherasync(completionstage<? extends t> other,function<? super t, u> fn);
public <u> completionstage<u> applytoeitherasync(completionstage<? extends t> other,function<? super t, u> fn,executor executor);
public class demo6 {

    public static void main(string[] args) throws executionexception, interruptedexception {

        completablefuture<integer> applytoeither = completablefuture.supplyasync(() -> {
            int nextint = new random().nextint(10);
            try {
                thread.sleep(nextint);
            } catch (interruptedexception e) {
                e.printstacktrace();
            }
            system.out.println("f1=" + nextint);
            return nextint;
        }).applytoeither(completablefuture.supplyasync(() -> {
            int nextint = new random().nextint(10);
            try {
                thread.sleep(nextint);
            } catch (interruptedexception e) {
                e.printstacktrace();
            }
            system.out.println("f2=" + nextint);
            return nextint;
        }), i -> i);

        system.out.println(applytoeither.get());
    }
}


7. thencompose

public <u> completablefuture<u> thencompose(function<? super t, ? extends completionstage<u>> fn);
public <u> completablefuture<u> thencomposeasync(function<? super t, ? extends completionstage<u>> fn) ;
public <u> completablefuture<u> thencomposeasync(function<? super t, ? extends completionstage<u>> fn, executor executor) ;

thencompose 方法允许你对两个 completionstage 进行流水线操作,第一个操作完成时,将其结果作为参数传递给第二个操作。

public class demo7 {

    public static void main(string[] args) throws executionexception, interruptedexception {

        completablefuture<integer> thencompose = completablefuture.supplyasync(() -> new random().nextint(10))
                .thencompose(i -> completablefuture.supplyasync(() -> i * i));
        system.out.println(thencompose.get());

    }
}



参考博文: