Package com.spotify.github.async
Class Async
- java.lang.Object
-
- com.spotify.github.async.Async
-
public class Async extends Object
Async class to facilitate async operations.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> CompletableFuture<T>
exceptionallyCompose(CompletableFuture<T> future, Function<Throwable,CompletableFuture<T>> handler)
static <T> Stream<T>
streamFromPaginatingIterable(Iterable<AsyncPage<T>> iterable)
-
-
-
Method Detail
-
streamFromPaginatingIterable
public static <T> Stream<T> streamFromPaginatingIterable(Iterable<AsyncPage<T>> iterable)
-
exceptionallyCompose
public static <T> CompletableFuture<T> exceptionallyCompose(CompletableFuture<T> future, Function<Throwable,CompletableFuture<T>> handler)
-
-