Uses of Interface
org.infinispan.util.concurrent.BlockingManager.ScheduledBlockingCompletableStage
Package
Description
Thread-safe containers and other concurrency-related utilities, designed to supplement JDK concurrency utilities
and containers.
-
Uses of BlockingManager.ScheduledBlockingCompletableStage in org.infinispan.util.concurrent
Modifier and TypeMethodDescriptionBlockingManager.scheduleRunBlocking
(Runnable runnable, long delay, TimeUnit unit, Object traceId) Replacement forScheduledExecutorService.schedule(Runnable, long, TimeUnit)
} that invokes theRunnable
in a blocking thread only after the elapsed time.BlockingManager.scheduleRunBlocking
(Supplier<V> supplier, long delay, TimeUnit unit, Object traceId) Replacement forScheduledExecutorService.schedule(java.util.concurrent.Callable, long, TimeUnit)
} that invokes theCallable
in a blocking thread only after the elapsed time.BlockingManagerImpl.scheduleRunBlocking
(Supplier<V> supplier, long delay, TimeUnit unit, Object traceId)