com.hazelcast.client.spi
Interface ClientExecutionService


public interface ClientExecutionService

Author:
mdogan 5/16/13

Method Summary
 void execute(Runnable command)
           
 void executeInternal(Runnable command)
           
 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)
           
 

Method Detail

executeInternal

void executeInternal(Runnable command)

execute

void execute(Runnable command)

submit

ICompletableFuture<?> submit(Runnable task)

submit

<T> ICompletableFuture<T> submit(Callable<T> task)

schedule

ScheduledFuture<?> schedule(Runnable command,
                            long delay,
                            TimeUnit unit)

scheduleAtFixedRate

ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
                                       long initialDelay,
                                       long period,
                                       TimeUnit unit)

scheduleWithFixedDelay

ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
                                          long initialDelay,
                                          long period,
                                          TimeUnit unit)

getAsyncExecutor

ExecutorService getAsyncExecutor()


Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.