«completable-future» etiketlenmiş sorular

4
CompletableFuture | thenApply vs thenCompose
thenApply() Ve arasındaki farkı anlayamıyorum thenCompose(). Öyleyse, birisi geçerli bir kullanım durumu sağlayabilir mi? Java belgelerinden: thenApply(Function<? super T,? extends U> fn) CompletionStageBu aşama normal olarak tamamlandığında, sağlanan işlevin argümanı olarak bu aşamanın sonucuyla çalıştırılan yeni bir döndürür . thenCompose(Function<? super T,? extends CompletionStage<U>> fn) CompletionStageBu aşama normal olarak tamamlandığında, …

1
completeablefuture katılmak vs get
Arasındaki fark nedir CompletableFuture.get()ve CompletableFuture.join()? Kodum aşağıdadır: List<String> process() { List<String> messages = Arrays.asList("Msg1", "Msg2", "Msg3", "Msg4", "Msg5", "Msg6", "Msg7", "Msg8", "Msg9", "Msg10", "Msg11", "Msg12"); MessageService messageService = new MessageService(); ExecutorService executor = Executors.newFixedThreadPool(4); List<String> mapResult = new ArrayList<>(); CompletableFuture<?>[] fanoutRequestList = new CompletableFuture[messages.size()]; int count = 0; for (String …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.