반응형
thenCompose
-
CompletableFuture 2백기선(인프런 강의)/더 자바, Java 8 2020. 7. 23. 08:35
조합하기 thenCompose() 두 작업이 서로 이어서 실행하도록 조합 두 작업이 연관관계가 있을 때 public class App { public static void main(String[] args) throws InterruptedException, ExecutionException { CompletableFuture hello = CompletableFuture.supplyAsync(() -> { System.out.println("Hello " + Thread.currentThread().getName()); return "Hello"; }); CompletableFuture future = hello.thenCompose(s -> getWorld("안녕하세요")); System.out.pr..