public interface ClientExecutionService extends Executor
Modifier and Type | Method and Description |
---|---|
void |
execute(Runnable command)
Execute alien(user code) on execution service
|
ExecutorService |
getAsyncExecutor() |
ScheduledFuture<?> |
schedule(Runnable command,
long delay,
TimeUnit unit) |
ScheduledFuture<?> |
scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit) |
ScheduledFuture<?> |
scheduleWithFixedDelay(Runnable command,
long initialDelay,
long period,
TimeUnit unit) |
<T> ICompletableFuture<T> |
submit(Callable<T> task) |
ICompletableFuture<?> |
submit(Runnable task) |
void execute(Runnable command)
ICompletableFuture<?> submit(Runnable task)
<T> ICompletableFuture<T> submit(Callable<T> task)
ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)
ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long period, TimeUnit unit)
ExecutorService getAsyncExecutor()
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.