Uses of Interface
org.apache.commons.lang3.concurrent.UncheckedFuture
-
Packages that use UncheckedFuture Package Description org.apache.commons.lang3.concurrent Provides support classes for multi-threaded programming. -
-
Uses of UncheckedFuture in org.apache.commons.lang3.concurrent
Methods in org.apache.commons.lang3.concurrent that return UncheckedFuture Modifier and Type Method Description static <T> UncheckedFuture<T>UncheckedFuture. on(Future<T> future)Creates a new instance on the given Future.Methods in org.apache.commons.lang3.concurrent that return types with arguments of type UncheckedFuture Modifier and Type Method Description static <T> Stream<UncheckedFuture<T>>UncheckedFuture. map(Collection<Future<T>> futures)Maps the given instances as unchecked.static <T> Collection<UncheckedFuture<T>>UncheckedFuture. on(Collection<Future<T>> futures)Maps the given instances as unchecked.
-