4
CompletableFuture | thenApply 대 thenCompose
thenApply()와 thenCompose(). 의 차이에 대해 머리를 이해할 수 없습니다 . 그렇다면 누군가 유효한 사용 사례를 제공 할 수 있습니까? Java 문서에서 : thenApply(Function<? super T,? extends U> fn) CompletionStage이 단계가 정상적으로 완료되면 제공된 함수에 대한 인수로이 단계의 결과를 사용하여 실행 되는 new 를 반환 합니다. thenCompose(Function<? super T,? extends CompletionStage<U>> …