| Package | Description |
|---|---|
| org.redisson | |
| org.redisson.api | |
| org.redisson.executor |
| Modifier and Type | Method and Description |
|---|---|
<T> RExecutorFuture<T> |
RedissonExecutorService.submit(Callable<T> task) |
RExecutorFuture<?> |
RedissonExecutorService.submit(Runnable task) |
<T> RExecutorFuture<T> |
RedissonExecutorService.submit(Runnable task,
T result) |
<T> RExecutorFuture<T> |
RedissonExecutorService.submitAsync(Callable<T> task) |
RExecutorFuture<?> |
RedissonExecutorService.submitAsync(Runnable task) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
RScheduledFuture<V> |
| Modifier and Type | Method and Description |
|---|---|
<T> RExecutorFuture<T> |
RExecutorService.submit(Callable<T> task)
Submits a value-returning task for execution synchronously and returns a
Future representing the pending results of the task.
|
RExecutorFuture<?> |
RExecutorService.submit(Runnable task)
Submits a Runnable task for execution and returns a Future
representing that task.
|
<T> RExecutorFuture<T> |
RExecutorService.submit(Runnable task,
T result)
Submits a Runnable task for execution and returns a Future
representing that task.
|
<T> RExecutorFuture<T> |
RExecutorServiceAsync.submitAsync(Callable<T> task)
Submits task for execution asynchronously
|
RExecutorFuture<?> |
RExecutorServiceAsync.submitAsync(Runnable task)
Submits task for execution asynchronously
|
| Modifier and Type | Method and Description |
|---|---|
List<RExecutorFuture<?>> |
RExecutorBatchFuture.getTaskFutures() |
| Modifier and Type | Class and Description |
|---|---|
class |
RedissonExecutorFuture<V> |
class |
RedissonScheduledFuture<V> |
| Modifier and Type | Method and Description |
|---|---|
List<RExecutorFuture<?>> |
RedissonExecutorBatchFuture.getTaskFutures() |
| Constructor and Description |
|---|
RedissonExecutorFutureReference(RequestId requestId,
RExecutorFuture<?> referent,
ReferenceQueue<? super RExecutorFuture<?>> q,
RPromise<?> promise) |
| Constructor and Description |
|---|
RedissonExecutorBatchFuture(List<RExecutorFuture<?>> futures) |
RedissonExecutorFutureReference(RequestId requestId,
RExecutorFuture<?> referent,
ReferenceQueue<? super RExecutorFuture<?>> q,
RPromise<?> promise) |
Copyright © 2014–2018 The Redisson Project. All rights reserved.