public interface InternalExecutionService extends ExecutionService
ExecutionService. Currently this method doesn't contains any additional methods, but
 in the future they can be added here.ASYNC_EXECUTOR, CLIENT_EXECUTOR, CLIENT_MANAGEMENT_EXECUTOR, CLIENT_QUERY_EXECUTOR, IO_EXECUTOR, MAP_LOAD_ALL_KEYS_EXECUTOR, MAP_LOADER_EXECUTOR, OFFLOADABLE_EXECUTOR, QUERY_EXECUTOR, SCHEDULED_EXECUTOR, SYSTEM_EXECUTOR| Modifier and Type | Method and Description | 
|---|---|
void | 
executeDurable(String name,
              Runnable command)  | 
ExecutorService | 
getDurable(String name)  | 
ExecutorService | 
getScheduledDurable(String name)  | 
<V> ScheduledFuture<Future<V>> | 
scheduleDurable(String name,
               Callable<V> command,
               long delay,
               TimeUnit unit)  | 
ScheduledFuture<?> | 
scheduleDurable(String name,
               Runnable command,
               long delay,
               TimeUnit unit)  | 
ScheduledFuture<?> | 
scheduleDurableWithRepetition(String name,
                             Runnable command,
                             long initialDelay,
                             long period,
                             TimeUnit unit)  | 
void | 
shutdownDurableExecutor(String name)  | 
void | 
shutdownScheduledDurableExecutor(String name)  | 
asCompletableFuture, execute, getExecutor, getGlobalTaskScheduler, getTaskScheduler, register, schedule, schedule, scheduleWithRepetition, scheduleWithRepetition, shutdownExecutor, submit, submitExecutorService getDurable(String name)
ExecutorService getScheduledDurable(String name)
ScheduledFuture<?> scheduleDurable(String name, Runnable command, long delay, TimeUnit unit)
<V> ScheduledFuture<Future<V>> scheduleDurable(String name, Callable<V> command, long delay, TimeUnit unit)
ScheduledFuture<?> scheduleDurableWithRepetition(String name, Runnable command, long initialDelay, long period, TimeUnit unit)
void shutdownDurableExecutor(String name)
void shutdownScheduledDurableExecutor(String name)
Copyright © 2018 Hazelcast, Inc.. All Rights Reserved.