public final class ClientExecutionServiceImpl extends Object implements ClientExecutionService
| Constructor and Description | 
|---|
| ClientExecutionServiceImpl(String name,
                          ThreadGroup threadGroup,
                          ClassLoader classLoader,
                          int poolSize) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | execute(Runnable command)Execute alien(user code) on execution service | 
| void | executeInternal(Runnable runnable) | 
| 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) | 
| void | shutdown() | 
| <T> ICompletableFuture<T> | submit(Callable<T> task) | 
| ICompletableFuture<?> | submit(Runnable task) | 
| <T> ICompletableFuture<T> | submitInternal(Runnable runnable) | 
public ClientExecutionServiceImpl(String name, ThreadGroup threadGroup, ClassLoader classLoader, int poolSize)
public <T> ICompletableFuture<T> submitInternal(Runnable runnable)
public void executeInternal(Runnable runnable)
public void execute(Runnable command)
ClientExecutionServiceexecute in interface ClientExecutionServiceexecute in interface Executorcommand - to runpublic ICompletableFuture<?> submit(Runnable task)
submit in interface ClientExecutionServicepublic <T> ICompletableFuture<T> submit(Callable<T> task)
submit in interface ClientExecutionServicepublic ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)
schedule in interface ClientExecutionServicepublic ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
scheduleAtFixedRate in interface ClientExecutionServicepublic ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long period, TimeUnit unit)
scheduleWithFixedDelay in interface ClientExecutionServicepublic ExecutorService getAsyncExecutor()
getAsyncExecutor in interface ClientExecutionServicepublic void shutdown()
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.