Uses of Interface
org.redisson.api.RExecutorFuture
-
Packages that use RExecutorFuture Package Description org.redisson org.redisson.api org.redisson.executor -
-
Uses of RExecutorFuture in org.redisson
Methods in org.redisson that return RExecutorFuture Modifier and Type Method Description RExecutorFuture<?>RedissonExecutorService. submit(Runnable task)RExecutorFuture<?>RedissonExecutorService. submit(Runnable task, long timeToLive, TimeUnit timeUnit)<T> RExecutorFuture<T>RedissonExecutorService. submit(Runnable task, T result)<T> RExecutorFuture<T>RedissonExecutorService. submit(Callable<T> task)<T> RExecutorFuture<T>RedissonExecutorService. submit(Callable<T> task, long timeToLive, TimeUnit timeUnit)RExecutorFuture<?>RedissonExecutorService. submitAsync(Runnable task)RExecutorFuture<?>RedissonExecutorService. submitAsync(Runnable task, long timeToLive, TimeUnit timeUnit)<T> RExecutorFuture<T>RedissonExecutorService. submitAsync(Callable<T> task)<T> RExecutorFuture<T>RedissonExecutorService. submitAsync(Callable<T> task, long timeToLive, TimeUnit timeUnit) -
Uses of RExecutorFuture in org.redisson.api
Subinterfaces of RExecutorFuture in org.redisson.api Modifier and Type Interface Description interfaceRScheduledFuture<V>Methods in org.redisson.api that return RExecutorFuture Modifier and Type Method Description RExecutorFuture<?>RExecutorService. submit(Runnable task)Synchronously submits a Runnable task for execution asynchronously.RExecutorFuture<?>RExecutorService. submit(Runnable task, long timeToLive, TimeUnit timeUnit)Synchronously submits a task with definedtimeToLiveparameter for execution asynchronously.<T> RExecutorFuture<T>RExecutorService. submit(Runnable task, T result)Synchronously submits a Runnable task for execution asynchronously and returns a RExecutorFuture representing that task.<T> RExecutorFuture<T>RExecutorService. submit(Callable<T> task)Synchronously submits a value-returning task for execution asynchronously and returns a Future representing the pending results of the task.<T> RExecutorFuture<T>RExecutorService. submit(Callable<T> task, long timeToLive, TimeUnit timeUnit)Synchronously submits a value-returning task with definedtimeToLiveparameter for execution asynchronously.RExecutorFuture<?>RExecutorServiceAsync. submitAsync(Runnable task)Submits task for execution asynchronouslyRExecutorFuture<?>RExecutorServiceAsync. submitAsync(Runnable task, long timeToLive, TimeUnit timeUnit)Submits a task with definedtimeToLiveparameter for execution asynchronously.<T> RExecutorFuture<T>RExecutorServiceAsync. submitAsync(Callable<T> task)Submits task for execution asynchronously<T> RExecutorFuture<T>RExecutorServiceAsync. submitAsync(Callable<T> task, long timeToLive, TimeUnit timeUnit)Submits a value-returning task with definedtimeToLiveparameter for execution asynchronously.Methods in org.redisson.api that return types with arguments of type RExecutorFuture Modifier and Type Method Description List<RExecutorFuture<?>>RExecutorBatchFuture. getTaskFutures()Returns list of Future objects. -
Uses of RExecutorFuture in org.redisson.executor
Classes in org.redisson.executor that implement RExecutorFuture Modifier and Type Class Description classRedissonExecutorFuture<V>classRedissonScheduledFuture<V>Methods in org.redisson.executor that return types with arguments of type RExecutorFuture Modifier and Type Method Description List<RExecutorFuture<?>>RedissonExecutorBatchFuture. getTaskFutures()Constructors in org.redisson.executor with parameters of type RExecutorFuture Constructor Description RedissonExecutorFutureReference(RequestId requestId, RExecutorFuture<?> referent, ReferenceQueue<? super RExecutorFuture<?>> q, RPromise<?> promise)Constructor parameters in org.redisson.executor with type arguments of type RExecutorFuture Constructor Description RedissonExecutorBatchFuture(List<RExecutorFuture<?>> futures)RedissonExecutorFutureReference(RequestId requestId, RExecutorFuture<?> referent, ReferenceQueue<? super RExecutorFuture<?>> q, RPromise<?> promise)
-