com.jashmore.sqs.util.concurrent.CompletableFutureUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-utils Show documentation
Show all versions of common-utils Show documentation
Utility methods for dealing with basic functionality for this library, split out so so it can be consumed by other extensions
package com.jashmore.sqs.util.concurrent;
import static java.util.stream.Collectors.toList;
import lombok.experimental.UtilityClass;
import java.util.List;
import java.util.concurrent.CompletableFuture;
@UtilityClass
public class CompletableFutureUtils {
/**
* Creates a new {@link CompletableFuture} that is completed exceptionally with the provided {@link Throwable}.
*
* @param throwable the throwable to complete the {@link CompletableFuture} with
* @param the type that the future is returning
* @return a future that is completed exceptionally
*/
public CompletableFuture completedExceptionally(final Throwable throwable) {
final CompletableFuture future = new CompletableFuture<>();
future.completeExceptionally(throwable);
return future;
}
/**
* Wait for all of the futures to complete and return a single future containing the list of results.
*
* @param futures the futures to wait for
* @param the type that the future returns
* @return a future that will complete if all futures are completed successfully
*/
public CompletableFuture> allOf(final List> futures) {
return CompletableFuture.allOf(futures.toArray(new CompletableFuture>[0]))
.thenApply((ignored) -> futures.stream()
.map(CompletableFuture::join)
.collect(toList()));
}
}