创建
工厂方式创建cf对象
CompletableFuture 提供了四个静态方法来创建一个异步操作。
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)
没有指定Executor的方法会使用ForkJoinPool.commonPool() 作为它的线程池执行异步代码。如果指定线程池,则使用指定的线程池运行。以下所有的方法都类同。
runAsync
runAsync方法不支持返回值。
import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) throws ExecutionException, InterruptedException {
CompletableFuture<Void> future = CompletableFuture.runAsync(() -> {
try {
log.info("run future start");
// 模拟耗时操作
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
log.info("run future end");
});
future.get();
log.info("run main end");
}
}
结果
09:44:43.101 [ForkJoinPool.commonPool-worker-1] INFO CompletableFutureDemo - run future start
09:44:44.109 [ForkJoinPool.commonPool-worker-1] INFO CompletableFutureDemo - run future end
09:44:44.109 [main] INFO cn.cubg.callcenter.commons.cron.CompletableFutureDemo - run main end
supplyAsync
supplyAsync可以支持返回值。
import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) throws ExecutionException, InterruptedException {
long startTime = System.currentTimeMillis();
CompletableFuture<Long> future = CompletableFuture.supplyAsync(() -> {
try {
log.info("run future start");
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
}
log.info("run future end");
return System.currentTimeMillis();
});
long endTime = future.get();
log.info("run main time {}", endTime - startTime);
}
}
计算结果完成时的回调方法
CompletableFuture获取结果的方式有如下4个方法:
1:get 阻塞获取结果,实现Future的get接口,显式抛出异常
2:getNow(T valueIfAbsent) 获取执行结果,如果当前任务未执行完成,则返回valueIfAbsent
3: join 执行完成后返回执行结果,或者抛出unchecked异常
4: T get(long timeout, TimeUnit unit) 在有限时间内获取数据
以下是CompletableFuture的创建对象以及api的使用
当CompletableFuture的计算结果完成,或者抛出异常的时候,可以执行特定的Action。主要是下面的方法:
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)
public CompletableFuture<T> exceptionally(Function<Throwable,? extends T> fn)
可以看到Action的类型是BiConsumer<? super T,? super Throwable>它可以处理正常的计算结果,或者异常情况。
whenComplete 和 whenCompleteAsync 的区别: whenComplete:是执行当前任务的线程执行继续执行 whenComplete 的任务。 whenCompleteAsync:是执行把 whenCompleteAsync 这个任务继续提交给线程池来进行执行。
whenComplete
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
CompletableFuture<Void> future = CompletableFuture.runAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
}
if(new Random().nextInt()%2>=0) {
log.info("run random func");
int i = 12/0;
}
System.out.println("run end ...");
});
future.whenComplete((unused, throwable) -> System.out.println("执行完成!"));
future.exceptionally(t -> {
System.out.println("执行失败!"+t.getMessage());
return null;
});
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
thenApply 方法
当一个线程依赖另一个线程时,可以使用 thenApply 方法来把这两个线程串行化。
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)
Function<? super T,? extends U> T:上一个任务返回结果的类型 U:当前任务的返回值类型
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
CompletableFuture<Long> future = CompletableFuture.supplyAsync(() -> {
long result = new Random().nextInt(10)%2;
if (result==0){
log.info("result1={}",result/0);
}else {
log.info("result1={}",result);
}
return result;
}).thenApply(t -> {
long result = t*5;
log.info("result2={}",result);
return result;
});
long result = 0;
try {
result = future.get();
} catch (Exception e) {
log.error(e.getMessage());
}
log.info("result ={}",result);
}
}
handle 方法
handle 是执行任务完成时对结果的处理。 handle 方法和 thenApply 方法处理方式基本一样。不同的是 handle 是在任务完成后再执行,还可以处理异常的任务。thenApply 只可以执行正常的任务,任务出现异常则不执行 thenApply 方法。
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);
eg:
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
Integer result = new Random().nextInt(100) % 2;
if (result == 0) {
log.info("result1={}", result / 0);
} else {
log.info("result1={}", result);
}
return result;
}).handle((param, throwable) -> {
int result = -1;
if (throwable == null) {
result = param * 2;
} else {
log.info(throwable.getMessage());
}
return result;
});
long result = 0;
try {
result = future.get();
} catch (Exception e) {
log.error(e.getMessage());
}
log.info("result ={}", result);
}
}
thenAccept 消费处理结果
接收任务的处理结果,并消费处理,无返回结果。
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);
eg:
public static void thenAccept() throws Exception{
CompletableFuture<Void> future = CompletableFuture.supplyAsync(new Supplier<Integer>() {
@Override
public Integer get() {
return new Random().nextInt(10);
}
}).thenAccept(integer -> {
System.out.println(integer);
});
future.get();
}
从示例代码中可以看出,该方法只是消费执行完成的任务,并可以根据上面的任务返回的结果进行处理。并没有后续的输错操作。
thenRun 方法
跟 thenAccept 方法不一样的是,不关心任务的处理结果。只要上面的任务执行完成,就开始执行 thenAccept 。
public CompletionStage<Void> thenRun(Runnable action);
public CompletionStage<Void> thenRunAsync(Runnable action);
public CompletionStage<Void> thenRunAsync(Runnable action,Executor executor);
eg
public static void thenRun() throws Exception{
CompletableFuture<Void> future = CompletableFuture.supplyAsync(new Supplier<Integer>() {
@Override
public Integer get() {
return new Random().nextInt(10);
}
}).thenRun(() -> {
System.out.println("thenRun ...");
});
future.get();
}
该方法同 thenAccept 方法类似。不同的是上个任务处理完成后,并不会把计算的结果传给 thenRun 方法。只是处理玩任务后,执行 thenAccept 的后续操作。
thenCombine 合并任务
thenCombine 会把 两个 CompletionStage 的任务都执行完成后,把两个任务的结果一块交给 thenCombine 来处理。
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);
eg:
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "world";
});
CompletableFuture<String> result = f1.thenCombine(f2, (r1, r2) -> r1+" "+r2);
String r = null;
try {
r= result.get();
} catch (Exception e) {
e.printStackTrace();
}
log.info("result ={}",r);
}
}
thenAcceptBoth
当两个CompletionStage都执行完成后,把结果一块交给thenAcceptBoth来进行消耗
public <U> CompletionStage<Void> thenAcceptBoth(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action);
public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action);
public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,BiConsumer<? super T, ? super U> action, Executor executor);
eg
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return " world";
});
final String[] r = {""};
CompletableFuture f = f1.thenAcceptBoth(f2, new BiConsumer<String, String>() {
@Override
public void accept(String s1, String s2) {
r[0] = s1+s2;
}
});
try {
f.get();
} catch (Exception e) {
e.printStackTrace();
}
log.info("result ={}", r[0]);
}
}
acceptEither取计算速度最快的结果
针对两个CompletionStage,将计算最快的那个CompletionStage的结果用来作为下一步的消耗。 此方法接受Consumer只对结果进行消耗.
public CompletionStage<Void> acceptEither(CompletionStage<? extends T> other,Consumer<? super T> action);
public CompletionStage<Void> acceptEitherAsync(CompletionStage<? extends T> other,Consumer<? super T> action);
public CompletionStage<Void> acceptEitherAsync(CompletionStage<? extends T> other,Consumer<? super T>
eg
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
int t = new Random().nextInt(4);
TimeUnit.SECONDS.sleep(t);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
int t = new Random().nextInt(4);
TimeUnit.SECONDS.sleep(t);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "world";
});
CompletableFuture<Void> r = f1.acceptEither(f2, result -> {
log.info("result={}", result);
});
try {
r.get();
} catch (Exception e) {
e.printStackTrace();
}
}
}
applyToEither计算最快的cf的结果转换
两个CompletionStage,谁执行返回的结果快,就用那个CompletionStage的结果进行下一步的转化操作。
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);
eg
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return " world";
});
final String[] r = {""};
CompletableFuture f = f1.acceptEither(f2, s -> r[0] = s);
try {
f.get();
} catch (Exception e) {
e.printStackTrace();
}
log.info("result ={}", r[0]);
}
}
runAfterEither 方法
两个CompletionStage,任何一个完成了都会执行下一步的操作(Runnable)
public CompletionStage<Void> runAfterEither(CompletionStage<?> other,Runnable action);
public CompletionStage<Void> runAfterEitherAsync(CompletionStage<?> other,Runnable action);
public CompletionStage<Void> runAfterEitherAsync(CompletionStage<?> other,Runnable action,Executor executor);
eg
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return " world";
});
CompletableFuture f = f1.runAfterEither(f2, new Runnable() {
@Override
public void run() {
log.info("有一个执行完成,");
}
});
try {
f.get();
} catch (Exception e) {
e.printStackTrace();
}
}
}
runAfterBoth
两个CompletionStage,都完成了计算才会执行下一步的操作(Runnable)
public CompletionStage<Void> runAfterBoth(CompletionStage<?> other,Runnable action);
public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other,Runnable action);
public CompletionStage<Void> runAfterBothAsync(CompletionStage<?> other,Runnable action,Executor executor);
eg:
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return " world";
});
CompletableFuture f = f1.runAfterBoth(f2, new Runnable() {
@Override
public void run() {
log.info("有一个执行完成,");
}
});
try {
f.get();
} catch (Exception e) {
e.printStackTrace();
}
}
}
thenCompose 方法
thenCompose 方法允许你对两个 CompletionStage 进行流水线操作,第一个操作完成时,将其结果作为参数传递给第二个操作。
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) ;
eg:
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
log.info("start");
CompletableFuture<String> f = CompletableFuture.supplyAsync(() -> {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "hello";
}).thenCompose(new Function<String, CompletionStage<String>>() {
@Override
public CompletionStage<String> apply(String s) {
return CompletableFuture.supplyAsync(new Supplier<String>() {
@Override
public String get() {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
return s+" world";
}
});
}
});
try {
String r= f.get();
log.info("result={}",r);
} catch (Exception e) {
e.printStackTrace();
}
}
}
anyOf
方法名 | 描述 |
---|---|
anyOf(CompletableFuture<?>… cfs) | 在任何一个Future对象结束后结束,并返回一个future。 |
@Slf4j
public class CompletableFutureDemo {
public static void main(String[] args) {
Random rand = new Random();
CompletableFuture<String> f1 = CompletableFuture.supplyAsync(() -> {
try {
Thread.sleep(rand.nextInt(2000));
} catch (InterruptedException e) {
e.printStackTrace();
}
return "F1";
});
CompletableFuture<String> f2 = CompletableFuture.supplyAsync(() -> {
try {
Thread.sleep(rand.nextInt(2000));
} catch (InterruptedException e) {
e.printStackTrace();
}
return "F2";
});
CompletableFuture<String> f3 = CompletableFuture.supplyAsync(() -> {
try {
Thread.sleep(rand.nextInt(2000));
} catch (InterruptedException e) {
e.printStackTrace();
}
return "F3";
});
CompletableFuture<Object> future = CompletableFuture.anyOf(f1, f2, f3);
try {
System.out.println(future.get());
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}
}