Uses of Class
com.google.common.util.concurrent.ListenableFutureTask
-
Packages that use ListenableFutureTask Package Description com.google.common.util.concurrent Concurrency utilities. -
-
Uses of ListenableFutureTask in com.google.common.util.concurrent
Methods in com.google.common.util.concurrent that return ListenableFutureTask Modifier and Type Method Description static <V> ListenableFutureTask<V>ListenableFutureTask. create(Runnable runnable, @Nullable V result)Creates aListenableFutureTaskthat will upon running, execute the givenRunnable, and arrange thatgetwill return the given result on successful completion.static <V> ListenableFutureTask<V>ListenableFutureTask. create(Callable<V> callable)Creates aListenableFutureTaskthat will upon running, execute the givenCallable.
-