CompletableFuture解析

這幾天稍微花時(shí)間學(xué)習(xí)了一下 java 8 提供的處理異步調(diào)用的一個(gè) future 類(lèi) CompletableFuture.

這是一個(gè)針對(duì)函數(shù)式的 future 對(duì)象.用來(lái)讓我們更加優(yōu)雅的使用異步調(diào)用.

簡(jiǎn)述

CompletableFutureFuture接口的實(shí)現(xiàn)類(lèi).內(nèi)部只有兩個(gè)屬性:resultstack兩個(gè)值,分別表示對(duì)象所存儲(chǔ)的內(nèi)容以及對(duì)象現(xiàn)在的完成狀況.

由于CompletableFuture也是 future 對(duì)象的一部分,所以它也有 future 的相關(guān)特性.博主在這里認(rèn)為它最終要的內(nèi)容就是他的執(zhí)行時(shí)間,就是:

CompletableFuture 只在對(duì)象創(chuàng)建的時(shí)候才開(kāi)始嘗試執(zhí)行

創(chuàng)建對(duì)象

CompletableFuture有兩類(lèi)最基本的創(chuàng)建對(duì)象的靜態(tài)方法:

public static <U> CompletableFuture<U> supplyAsync(Supplier<U> supplier);
public static <U> CompletableFuture<U> supplyAsync(Supplier<U> supplier, Executor executor);
public static CompletableFuture<Void> runAsync(Runnable runnable);
public static CompletableFuture<Void> runAsync(Runnable runnable, Executor executor);
  • supplyAsync 表示需要傳入一個(gè) Supplier 類(lèi)型的 lambda 表達(dá)式來(lái)創(chuàng)建一個(gè)新的對(duì)象
  • runAsync 方法表示需要傳入一個(gè) Runnable 類(lèi)型的對(duì)象來(lái)創(chuàng)建一個(gè)新的對(duì)象
  • supplyAsync 返回的對(duì)象帶有生成值,而 runAsync 方法返回的對(duì)象只能用來(lái)確認(rèn)該操作是否已經(jīng)完成而不能獲取到內(nèi)容.在這一點(diǎn)上和Runnable的情況有些類(lèi)似
  • 兩個(gè)方法都有對(duì)應(yīng)的重寫(xiě)方法, 需要傳入線(xiàn)程池,如果不傳入線(xiàn)程池,則會(huì)默認(rèn)使用ForkJoinPool線(xiàn)程池

獲取對(duì)象內(nèi)容

CompletableFuture有幾個(gè)相關(guān)方法,包括:

public T get() throws InterruptedException, ExecutionException;
public T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException;
public T join();
public T getNow(T valueIfAbsent);
  • get 方法會(huì)使當(dāng)前線(xiàn)程阻塞,并且等待直到 future 完成,并且將返回 future 的值
  • 帶參數(shù)的 get 方法需要傳入對(duì)應(yīng)的時(shí)間長(zhǎng)度,一旦超出這個(gè)時(shí)間,會(huì)拋出TimeoutException

其中 TimeUnit 是一個(gè)表示時(shí)間類(lèi)型的枚舉,最小單位:納秒,最大單位:日
[NANOSECONDS(納秒), MICROSECONDS(微秒), MILLISECONDS(毫秒), SECONDS(秒), MINUTES(分), HOURS(時(shí)), DAYS(日)]

  • join 方法與 get 并無(wú)太大差別,但 join 方法不能被打斷.(暫時(shí)沒(méi)搞清楚)
  • getNow 方法不會(huì)阻塞線(xiàn)程,而是立即返回值,如果該 future 當(dāng)前沒(méi)有完成,則會(huì)立刻返回該方法的傳入?yún)?shù).
  • get 和 join 方法會(huì)在正常的情況下返回值,在遇到異常的情況下將異常拋出

完成對(duì)象

CompletableFuture有兩個(gè)完成方法:

public boolean complete(T value);
public boolean completeExceptionally(Throwable ex);
public boolean cancel(boolean mayInterruptIfRunning);
  • complete 方法將future狀態(tài)置為已完成,并且將參數(shù)注入,但如果這個(gè)future已經(jīng)完成了,則不會(huì)產(chǎn)生任何變化
  • completeExceptionally 方法將future狀態(tài)置為已完成,并且將異常參數(shù)注入,并且在get的時(shí)候回獲取這個(gè)異常,但如果這個(gè)future已經(jīng)完成了,則不會(huì)產(chǎn)生任何變化
  • cancel 方法會(huì)取消 future 對(duì)象,并且置入一個(gè) CancellationException. 參數(shù)表示是否會(huì)打斷 future 的執(zhí)行(目前沒(méi)有測(cè)試過(guò))

檢驗(yàn)方法

public boolean isDone();
public boolean isCancelled();
public boolean isCompletedExceptionally();
  • isDone 用來(lái)返回 future 對(duì)象是否已經(jīng)完成
  • isCancelled 用來(lái)返回 future 對(duì)象是否已經(jīng)被取消
  • isCompletedExceptionally 用來(lái)返回 future 是否出現(xiàn)了異常

then 方法

CompletableFuture有一系列延續(xù)方法,大部分都以 then 開(kāi)頭.

  • 都表示在 future 對(duì)象已完成之后進(jìn)行某種操作.
  • 方法都會(huì)返回一個(gè)新的 CompletableFuture對(duì)象
  • 方法的Executor參數(shù)表示是否需要傳入一個(gè)線(xiàn)程池來(lái)開(kāi)啟新線(xiàn)程操作
  • CompletableFuture對(duì)象可以嵌套
  • lambda中可以?huà)伋?RuntimeException .不可以?huà)伋?Exception.
    //該方法的傳入一個(gè) T -> U 的Function<T,U>, 并且返回 <U> 的CompletableFuture
    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);
    //傳入一個(gè) Consumer 函數(shù)來(lái)完成. 返回值沒(méi)有內(nèi)容
    public CompletableFuture<Void> thenAccept(Consumer<? super T> action);
    public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action);
    public CompletableFuture<Void> thenAcceptAsync(Consumer<? super T> action,Executor executor);
    //與 thenAccept 方法相同,但是傳入?yún)?shù)為 Runnable
    public CompletableFuture<Void> thenRun(Runnable action);
    public CompletableFuture<Void> thenRunAsync(Runnable action);
    public CompletableFuture<Void> thenRunAsync(Runnable action,Executor executor);
    //thenCombine 針對(duì)兩個(gè) future 進(jìn)行操作.
    //需要傳入另一個(gè) future 以及 一個(gè) BiFunction<T,U,V> ,返回一個(gè)新的 future.
    public <U,V> CompletableFuture<V> thenCombine(CompletionStage<? extends U> other,BiFunction<? super T,? super U,? extends V> fn);
    public <U,V> CompletableFuture<V> thenCombineAsync(CompletionStage<? extends U> other,BiFunction<? super T,? super U,? extends V> fn);
    public <U,V> CompletableFuture<V> thenCombineAsync(CompletionStage<? extends U> other,BiFunction<? super T,? super U,? extends V> fn, Executor executor);
    //thenAcceptBoth 同時(shí)等待兩個(gè) future ,并且返回一個(gè)空的CompletableFuture,
    //Bi lambda 的兩個(gè)參數(shù)分別接受的兩個(gè)參數(shù) 第一個(gè)接受 this , 第二個(gè)接受第一個(gè)參數(shù)返回
    public <U> CompletableFuture<Void> thenAcceptBoth(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action);
    public <U> CompletableFuture<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action);
    public <U> CompletableFuture<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action, Executor executor);
    //和thenAcceptBoth方法相同,但是傳入?yún)?shù)為 Runnable
    public CompletableFuture<Void> runAfterBoth(CompletionStage<?> other,Runnable action);
    public CompletableFuture<Void> runAfterBothAsync(CompletionStage<?> other,Runnable action);
    public CompletableFuture<Void> runAfterBothAsync(CompletionStage<?> other,Runnable action,Executor executor);
    //同時(shí)等待兩個(gè) future 同時(shí)完成 ,并且對(duì)第二個(gè)返回的 future 進(jìn)行處理.
    public <U> CompletableFuture<U> applyToEither(CompletionStage<? extends T> other, Function<? super T, U> fn);
    public <U> CompletableFuture<U> applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T, U> fn);
    public <U> CompletableFuture<U> applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T, U> fn,Executor executor);
    //同時(shí)等待兩個(gè) future ,并且對(duì)第二個(gè) future 的返回值進(jìn)行消費(fèi).
    public CompletableFuture<Void> acceptEither(CompletionStage<? extends T> other, Consumer<? super T> action);
    public CompletableFuture<Void> acceptEitherAsync(CompletionStage<? extends T> other, Consumer<? super T> action);
    public CompletableFuture<Void> acceptEitherAsync(CompletionStage<? extends T> other, Consumer<? super T> action, Executor executor);
    //和 acceptEitherAsync 相同,并且傳入 Runnable
    public CompletableFuture<Void> runAfterEither(CompletionStage<?> other,Runnable action);
    public CompletableFuture<Void> runAfterEitherAsync(CompletionStage<?> other, Runnable action);
    public CompletableFuture<Void> runAfterEitherAsync(CompletionStage<?> other,Runnable action,Executor executor);
    //thenCompose 接受一個(gè) Function 并且返回一個(gè)新的 CompletableFuture 對(duì)象.
    //所收集到的對(duì)象是沒(méi)有嵌套的 CompletableFuture 對(duì)象. 類(lèi)似 flatMap 的效果
    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);
    //whenComplete 接受 future 中拋出的異常和返回
    //在返回或者異常之后對(duì)返回值進(jìn)行消費(fèi),或者返回正常結(jié)果
    public CompletableFuture<T> whenComplete(BiConsumer<? super T, ? super Throwable> action);
    public CompletableFuture<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action);
    public CompletableFuture<T> whenCompleteAsync(BiConsumer<? super T, ? super Throwable> action, Executor executor);
    //handleAsync 接受一個(gè) function<返回值,異常,結(jié)果> 并在返回之后對(duì) future 的相應(yīng)進(jìn)行處理
    public <U> CompletableFuture<U> handle(BiFunction<? super T, Throwable, ? extends U> fn);
    public <U> CompletableFuture<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn);
    public <U> CompletableFuture<U> handleAsync(BiFunction<? super T, Throwable, ? extends U> fn, Executor executor);
    //exceptionally 會(huì)返回一個(gè)新的 CompletableFuture, 并且該方法會(huì)阻塞當(dāng)前線(xiàn)程
    //當(dāng)原有方法發(fā)生了異常,exceptionally 的 function 會(huì)執(zhí)行.
    //當(dāng)原有方法正常完成,則會(huì)返回一個(gè)相同的結(jié)果
    public CompletableFuture<T> exceptionally(Function<Throwable, ? extends T> fn);

處理多個(gè)CompletableFuture

對(duì)于多個(gè)相互獨(dú)立的CompletableFuture,我們提供了兩個(gè)方法來(lái)處理它們

public static CompletableFuture<Void> allOf(CompletableFuture<?>... cfs);
public static CompletableFuture<Object> anyOf(CompletableFuture<?>... cfs);

allOf方法

  • CompletableFuture.allOf 靜態(tài)方法,傳入多個(gè)獨(dú)立的 future ,并且返回一個(gè)新的CompletableFuture.
  • 當(dāng)所有的 future 完成時(shí),新的 future 同時(shí)完成
  • 不能傳入空值
  • 當(dāng)某個(gè)方法出現(xiàn)了異常時(shí),新 future 會(huì)在所有 future 完成的時(shí)候完成,并且包含一個(gè)異常.

anyOf方法

  • CompletableFuture.anyOf 靜態(tài)方法,傳入多個(gè)獨(dú)立的 future ,并且返回一個(gè)新的CompletableFuture
  • 當(dāng)任何一個(gè)方法完成時(shí),新的 future 完成,并且返回該值
  • 不能傳入空值
  • 當(dāng)某個(gè)方法出現(xiàn)了異常時(shí),新 future 會(huì)立刻完成,并且攜帶一個(gè)異常

completedFuture 方法

  • completedFuture 方法是能夠直接將值放入 future 對(duì)象,常用于測(cè)試
  • CompletableFuture可以嵌套
public static <U> CompletableFuture<U> completedFuture(U value);

栗子

創(chuàng)建對(duì)象

    @Test
    public void base01() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture的靜態(tài)方法supplyAsync(Supplier<U> supplier)返回一個(gè)帶有
         * ForkJoinPool 線(xiàn)程池的 CompletableFuture 對(duì)象.
         * CompletableFuture 對(duì)象可以調(diào)用get方法,這樣會(huì)使線(xiàn)程阻塞.
         * Supplier<T> 接口是一個(gè) () -> T 的函數(shù)
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println(future.get());
    }

    @Test
    public void base02() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture的靜態(tài)方法supplyAsync(Supplier<U> supplier, Executor executor)
         * 返回一個(gè)帶有自定義的線(xiàn)程池的CompletableFuture對(duì)象.
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt(), Executors.newCachedThreadPool());
        System.out.println(future.get());
    }

    @Test
    public void base03() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture的靜態(tài)方法 runAsync(Runnable runnable)返回一個(gè)帶有
         * ForkJoinPool線(xiàn)程池的CompletableFuture對(duì)象.但是這個(gè)對(duì)象沒(méi)有返回值
         */
        CompletableFuture future = CompletableFuture.runAsync(getRandomIntRunnable());
        Assert.assertEquals(null,future.get());
    }

    @Test
    public void base04() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture的靜態(tài)方法 runAsync(Runnable runnable, Executor executor)
         * 返回一個(gè)帶有自定義的線(xiàn)程池的CompletableFuture對(duì)象.但是這個(gè)對(duì)象沒(méi)有返回值
         */
        CompletableFuture future = CompletableFuture.runAsync(getRandomIntRunnable(), Executors.newCachedThreadPool());
        Assert.assertEquals(null,future.get());
    }

獲取對(duì)象內(nèi)容

    @Test
    public void base06() throws ExecutionException, InterruptedException, TimeoutException {
        /**
         * get(long,TimeUnit) 方法阻塞并且等待返回結(jié)果,TimeUnit表示時(shí)間長(zhǎng)度單位,最小是納秒.
         * 當(dāng)超時(shí)未返回信息的時(shí)候回拋出TimeoutException異常
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println(future.get(10, TimeUnit.MILLISECONDS));
    }

    @Test
    public void base07() throws ExecutionException, InterruptedException {
        /**
         * join 方法與 get 方法無(wú)基本差別
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println(future.join());
    }

    @Test
    public void base08() throws ExecutionException, InterruptedException {
        /**
         * getNow(obj) 方法立即返回結(jié)果,如果無(wú)結(jié)果就返回傳入?yún)?shù)
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println(future.getNow("1bca"));
        System.out.println(future.get());
    }

完成對(duì)象

    @Test
    public void base09() throws ExecutionException, InterruptedException {
        /**
         * complete 方法將future狀態(tài)置為已完成,并且將參數(shù)注入,但如果這個(gè)future已經(jīng)完成了,則
         * 不會(huì)產(chǎn)生任何變化
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        future.complete("123");
        System.out.println(future.get());
        future.complete("345");
        System.out.println(future.get());
    }

    @Test
    public void base10() throws ExecutionException, InterruptedException {
        /**
         * completeExceptionally 方法將future狀態(tài)置為已完成,并且將異常參數(shù)注入,
         * 并且在get的時(shí)候回獲取這個(gè)異常
         * 但如果這個(gè)future已經(jīng)完成了,則不會(huì)產(chǎn)生任何變化
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        future.complete("123");
        System.out.println(future.get());
        future.complete("345");
        System.out.println(future.get());
        future.completeExceptionally(new Exception("abc"));
        System.out.println(future.get());
        future = CompletableFuture.supplyAsync(getRandomInt());
        future.completeExceptionally(new Exception("abc"));
        System.out.println(future.get());
    }

檢驗(yàn)方法

    @Test
    public void base20() throws ExecutionException, InterruptedException {
        /**
         * cancel 方法會(huì)取消 future 對(duì)象,并且置入一個(gè) CancellationException
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
//        future.get();
        future.cancel(false);
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
        future.get();
    }

then 方法

    @Test
    public void base11() throws ExecutionException, InterruptedException {
        /**
         * thenApplyAsync 方法會(huì)在前一個(gè)future *已完成* 的情況下開(kāi)始執(zhí)行方法中的lambda函數(shù).
         * 并且返回一個(gè)新的future對(duì)象.
         * 該方法的傳入一個(gè) T -> U 的Function<T,U>, 并且返回 <U> 的CompletableFuture
         * 方法的參數(shù)表示是否需要傳入一個(gè)線(xiàn)程池來(lái)開(kāi)啟新線(xiàn)程操作
         */
        CompletableFuture<Integer> future = CompletableFuture.supplyAsync(getRandomInt());
        System.out.println(new Date().getTime());
        CompletableFuture<Integer> newFuture = future.thenApplyAsync(x -> {
            System.out.println(new Date().getTime());
            return x * 100;
        });
        //獲取兩個(gè)future的結(jié)果
        System.out.println(future.get());
        System.out.println(newFuture.get());
    }

    @Test
    public void base12() throws ExecutionException, InterruptedException {
        /**
         * thenAcceptAsync 傳入一個(gè) Consumer 函數(shù)來(lái)完成.
         * 其它與 thenApplyAsync 相同
         * thenRunAsync 方法與此方法相同,但是傳入是一個(gè) Runnable
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture future1 = future.thenAcceptAsync(num -> {
            System.out.println(num);
        });
        future.get();
        System.out.println(future1.get());
    }

    @Test
    public void base13() throws ExecutionException, InterruptedException {
        /**
         * thenCombine 針對(duì)兩個(gè) future 進(jìn)行操作.
         * 需要傳入另一個(gè) future 以及 一個(gè) BiFunction<T,U,V> ,返回一個(gè)新的 future.
         */
        CompletableFuture<Integer> a = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture<Integer> b = CompletableFuture.supplyAsync(getRandomInt(3000l));
        CompletableFuture c = a.thenCombine(b,(a1,b1) -> {
            try {
                Thread.sleep(200);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            return  a1+b1;
        });
        System.out.println("a:"+a.get());
        System.out.println("b:"+b.get());
        System.out.println("c:"+c.get());
    }

    @Test
    public void base14() throws ExecutionException, InterruptedException {
        /**
         * thenAcceptBoth 同時(shí)等待兩個(gè) future ,并且返回一個(gè)空的CompletableFuture,
         * Bi lambda 的兩個(gè)參數(shù)分別接受的兩個(gè)參數(shù) 第一個(gè)接受 this , 第二個(gè)接受第一個(gè)參數(shù)返回
         * runAfterBothAsync 方法和此方法相同,但是傳入?yún)?shù)為 Runnable
         */
        CompletableFuture<Integer> a = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture<Integer> b = CompletableFuture.supplyAsync(getRandomInt(3000l));
        a.thenAcceptBoth(b,(a1,b1) -> {
            System.out.println(a1);
            System.out.println(b1);
        });
        a.get();
        b.get();
    }

    @Test
    public void base15() throws ExecutionException, InterruptedException {
        /**
         * applyToEitherAsync 同時(shí)等待兩個(gè) future 同時(shí)完成 ,并且對(duì)第二個(gè)返回的 future 進(jìn)行處理.
         * acceptEitherAsync 同時(shí)等待兩個(gè) future ,并且對(duì)第二個(gè) future 的返回值進(jìn)行消費(fèi).
         * runAfterEitherAsync 和 acceptEitherAsync 相同,并且傳入 Runnable
         */
        CompletableFuture<Integer> a = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture<Integer> b = CompletableFuture.supplyAsync(getRandomInt(3000l));
        CompletableFuture c = a.applyToEitherAsync(b,b1 -> {
            return b1*100;
        });
        a.get();
        b.get();
        System.out.println(c.get());
    }

    @Test
    public void base16() throws ExecutionException, InterruptedException {
        /**
         * whenComplete 接受 future 中拋出的異常和返回, 方法中可以?huà)伋?RuntimeException .不可以?huà)伋?Exception.
         * 在返回或者異常之后對(duì)返回值進(jìn)行消費(fèi),或者返回正常結(jié)果
         * handleAsync 接受一個(gè) function<返回值,異常,結(jié)果> 并在返回之后對(duì) future 的相應(yīng)進(jìn)行處理
         */
        CompletableFuture future = CompletableFuture.supplyAsync(() -> {
            int a = new Random().nextInt(10);
            if(a > 5){
                throw new RuntimeException("too big");
            }
            return a;
        });
        future.whenComplete((res,ex) -> {
            System.out.println("result:"+res+", ex:"+ex);
        });
    }

    @Test
    public void base17() throws ExecutionException, InterruptedException {
        /**
         * exceptionally 會(huì)返回一個(gè)新的 CompletableFuture , 該方法會(huì)阻塞,
         * 當(dāng)原有方法發(fā)生了異常,exceptionally 的 function 會(huì)執(zhí)行.
         * 當(dāng)原有方法正常完成,則會(huì)返回一個(gè)相同的結(jié)果
         */
        CompletableFuture future = CompletableFuture.supplyAsync(() -> {
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            throw new RuntimeException("except");
        });
        CompletableFuture exfuture = future.exceptionally(ex -> {return new Exception(((RuntimeException) ex).getMessage());});
        System.out.println(exfuture.get());
    }

    @Test
    public void base21() throws ExecutionException, InterruptedException {
        /**
         * thenCompose 接受一個(gè) Function 并且返回一個(gè)新的 CompletableFuture 對(duì)象.
         * 所收集到的對(duì)象是沒(méi)有嵌套的 CompletableFuture 對(duì)象. 類(lèi)似 flatMap 的效果
         */
        CompletableFuture future = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture newFuture = future.thenCompose(num -> {
            return CompletableFuture.completedFuture(num);
        });
        System.out.println(newFuture.get());
    }

處理多個(gè)CompletableFuture

allOf方法

    @Test
    public void base18() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture.allOf 靜態(tài)方法,傳入多個(gè)獨(dú)立的 future ,并且返回一個(gè)新的CompletableFuture
         * 當(dāng)所有的 future 完成時(shí),新的 future 同時(shí)完成,
         * 不能傳入空值
         * 當(dāng)某個(gè)方法出現(xiàn)了異常時(shí),新 future 會(huì)在所有 future 完成的時(shí)候完成,并且包含一個(gè)異常.
         */
        CompletableFuture<Integer> a = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture<Integer> b = CompletableFuture.supplyAsync(getRandomInt(3000l));
        CompletableFuture ex = CompletableFuture.supplyAsync(() -> {
            throw new RuntimeException("runtime");
        });

        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        CompletableFuture future = CompletableFuture.allOf(a,b,ex);
        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        CompletableFuture exFuture = future.exceptionally( exp -> {
            return ((RuntimeException) exp).getMessage();
        });
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        System.out.println(exFuture.get());
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
    }

anyOf方法

    @Test
    public void base19() throws ExecutionException, InterruptedException {
        /**
         * CompletableFuture.anyOf 靜態(tài)方法,傳入多個(gè)獨(dú)立的 future ,并且返回一個(gè)新的CompletableFuture
         * 當(dāng)任何一個(gè)方法完成時(shí),新的 future 完成,并且返回該值
         * 不能傳入空值
         * 當(dāng)某個(gè)方法出現(xiàn)了異常時(shí),新 future 會(huì)立刻完成,并且攜帶一個(gè)異常
         */
        CompletableFuture<Integer> a = CompletableFuture.supplyAsync(getRandomInt());
        CompletableFuture<Integer> b = CompletableFuture.supplyAsync(getRandomInt(3000l));
        CompletableFuture ex = CompletableFuture.supplyAsync(() -> {
            throw new RuntimeException("runtime");
        });

        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        CompletableFuture future = CompletableFuture.anyOf(a,b,ex);
        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        CompletableFuture exFuture = future.exceptionally( exp -> {
            return ((RuntimeException) exp).getMessage();
        });
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
        System.out.println("is a done?" +a.isDone()+". Is b done?"+b.isDone()+".");
        System.out.println(exFuture.get());
        System.out.println("done?"+future.isDone()+" cancel?"+future.isCancelled()+" exp?"+future.isCompletedExceptionally());
    }

completedFuture 方法

    @Test
    public void base22() throws ExecutionException, InterruptedException {
        /**
         * completedFuture 方法是能夠直接將值放入 future 對(duì)象,常用于測(cè)試
         * CompletableFuture可以嵌套
         */
        CompletableFuture future = CompletableFuture.completedFuture(1);
        CompletableFuture future1 = CompletableFuture.completedFuture(future);
        CompletableFuture future2 = CompletableFuture.completedFuture(future1);
        System.out.println(future2.get());
    }

這篇解析寫(xiě)到這里,下一次我會(huì)簡(jiǎn)單說(shuō)明一下有關(guān) java 8 中的幾種 lambda

歡迎關(guān)注我的博客: 既然來(lái)了就坐坐吧
小站剛開(kāi)始起步,歡迎您的駕到.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末惭聂,一起剝皮案震驚了整個(gè)濱河市岂膳,隨后出現(xiàn)的幾起案子帆调,更是在濱河造成了極大的恐慌犯助,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件腰池,死亡現(xiàn)場(chǎng)離奇詭異弦讽,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)凰棉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)璧针,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人渊啰,你說(shuō)我怎么就攤上這事探橱。” “怎么了绘证?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵隧膏,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我嚷那,道長(zhǎng)胞枕,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任魏宽,我火速辦了婚禮腐泻,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘队询。我一直安慰自己派桩,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布蚌斩。 她就那樣靜靜地躺著铆惑,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上员魏,一...
    開(kāi)封第一講書(shū)人閱讀 49,144評(píng)論 1 285
  • 那天丑蛤,我揣著相機(jī)與錄音,去河邊找鬼撕阎。 笑死受裹,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的虏束。 我是一名探鬼主播棉饶,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼魄眉!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起闷袒,我...
    開(kāi)封第一講書(shū)人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤坑律,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后囊骤,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體晃择,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年也物,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了宫屠。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡滑蚯,死狀恐怖浪蹂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情告材,我是刑警寧澤坤次,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站斥赋,受9級(jí)特大地震影響缰猴,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜疤剑,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一滑绒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧隘膘,春花似錦疑故、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春吨悍,著一層夾襖步出監(jiān)牢的瞬間扫茅,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工育瓜, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留葫隙,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓躏仇,卻偏偏與公主長(zhǎng)得像恋脚,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子焰手,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理糟描,服務(wù)發(fā)現(xiàn),斷路器书妻,智...
    卡卡羅2017閱讀 134,601評(píng)論 18 139
  • Java SE 基礎(chǔ): 封裝船响、繼承、多態(tài) 封裝: 概念:就是把對(duì)象的屬性和操作(或服務(wù))結(jié)合為一個(gè)獨(dú)立的整體躲履,并盡...
    Jayden_Cao閱讀 2,099評(píng)論 0 8
  • 轉(zhuǎn)自:http://blog.csdn.net/jackfrued/article/details/4492194...
    王帥199207閱讀 8,500評(píng)論 3 93
  • 河南省第二實(shí)驗(yàn)中學(xué)位于鄭州市緯二路12號(hào)见间,1998年建校,是河南省教育廳直屬的全日制初級(jí)中學(xué)工猜。承擔(dān)著國(guó)家米诉、省級(jí)多項(xiàng)...
    于佳成閱讀 713評(píng)論 0 1
  • 1.錯(cuò)誤信息: 2.解決方案: 重新連接設(shè)備: 將連接設(shè)備的數(shù)據(jù)線(xiàn)拔掉,重新連接 重啟xcode 重啟手機(jī) 如果上...
    Matt_Z_閱讀 962評(píng)論 0 0