Uses of Interface
com.hazelcast.core.ExecutionCallback

Packages that use ExecutionCallback
com.hazelcast.client.proxy This package contains client side proxy implementations of the different Hazelcast data structures and operation types 
com.hazelcast.client.spi.impl Provides util classes for com.hazelcast.client 
com.hazelcast.core Provides core API interfaces/classes. 
com.hazelcast.executor.impl This package contains IExecutorService functionality for Hazelcast.
The IExecutorService extends the ExecutorService and provides all kinds of additional methods related to distributed systems. 
com.hazelcast.map.impl.proxy Contains map proxy implementation and support classes. 
com.hazelcast.spi.impl Contains implementations for Hazelcast SPI. 
com.hazelcast.util.executor This package contains classes related to Util.Executor
 
 

Uses of ExecutionCallback in com.hazelcast.client.proxy
 

Methods in com.hazelcast.client.proxy with parameters of type ExecutionCallback
<T> void
ClientExecutorServiceProxy.submit(Callable<T> task, ExecutionCallback<T> callback)
           
<T> void
ClientExecutorServiceProxy.submit(Callable<T> task, MemberSelector memberSelector, ExecutionCallback<T> callback)
           
 void ClientExecutorServiceProxy.submit(Runnable command, ExecutionCallback callback)
           
 void ClientExecutorServiceProxy.submit(Runnable task, MemberSelector memberSelector, ExecutionCallback callback)
           
 void ClientMapProxy.submitToKey(K key, EntryProcessor entryProcessor, ExecutionCallback callback)
           
<T> void
ClientExecutorServiceProxy.submitToKeyOwner(Callable<T> task, Object key, ExecutionCallback<T> callback)
           
 void ClientExecutorServiceProxy.submitToKeyOwner(Runnable command, Object key, ExecutionCallback callback)
           
<T> void
ClientExecutorServiceProxy.submitToMember(Callable<T> task, Member member, ExecutionCallback<T> callback)
           
 void ClientExecutorServiceProxy.submitToMember(Runnable command, Member member, ExecutionCallback callback)
           
 

Uses of ExecutionCallback in com.hazelcast.client.spi.impl
 

Methods in com.hazelcast.client.spi.impl with parameters of type ExecutionCallback
 void ClientCallFuture.andThen(ExecutionCallback<V> callback)
           
 void ClientCallFuture.andThen(ExecutionCallback<V> callback, Executor executor)
           
 void ClientCallFuture.andThenInternal(ExecutionCallback<Data> callback)
           
 

Uses of ExecutionCallback in com.hazelcast.core
 

Methods in com.hazelcast.core with parameters of type ExecutionCallback
 void ICompletableFuture.andThen(ExecutionCallback<V> callback)
           
 void ICompletableFuture.andThen(ExecutionCallback<V> callback, Executor executor)
           
<T> void
IExecutorService.submit(Callable<T> task, ExecutionCallback<T> callback)
          Submits a task to a random member.
<T> void
IExecutorService.submit(Callable<T> task, MemberSelector memberSelector, ExecutionCallback<T> callback)
          Submits task to a randomly selected member.
<T> void
IExecutorService.submit(Runnable task, ExecutionCallback<T> callback)
          Submits a task to a random member.
<T> void
IExecutorService.submit(Runnable task, MemberSelector memberSelector, ExecutionCallback<T> callback)
          Submits a task to randomly selected members.
 void IMap.submitToKey(K key, EntryProcessor entryProcessor, ExecutionCallback callback)
          Applies the user defined EntryProcessor to the entry mapped by the key with specified ExecutionCallback to listen event status and returns immediately.
<T> void
IExecutorService.submitToKeyOwner(Callable<T> task, Object key, ExecutionCallback<T> callback)
          Submits task to the owner of the specified key.
<T> void
IExecutorService.submitToKeyOwner(Runnable task, Object key, ExecutionCallback<T> callback)
          Submits a task to the owner of the specified key.
<T> void
IExecutorService.submitToMember(Callable<T> task, Member member, ExecutionCallback<T> callback)
          Submits a task to the specified member.
<T> void
IExecutorService.submitToMember(Runnable task, Member member, ExecutionCallback<T> callback)
          Submits a task to the specified member.
 

Uses of ExecutionCallback in com.hazelcast.executor.impl
 

Methods in com.hazelcast.executor.impl with parameters of type ExecutionCallback
<T> void
ExecutorServiceProxy.submit(Callable<T> task, ExecutionCallback<T> callback)
           
<T> void
ExecutorServiceProxy.submit(Callable<T> task, MemberSelector memberSelector, ExecutionCallback<T> callback)
           
 void ExecutorServiceProxy.submit(Runnable task, ExecutionCallback callback)
           
 void ExecutorServiceProxy.submit(Runnable task, MemberSelector memberSelector, ExecutionCallback callback)
           
<T> void
ExecutorServiceProxy.submitToKeyOwner(Callable<T> task, Object key, ExecutionCallback<T> callback)
           
 void ExecutorServiceProxy.submitToKeyOwner(Runnable task, Object key, ExecutionCallback callback)
           
<T> void
ExecutorServiceProxy.submitToMember(Callable<T> task, Member member, ExecutionCallback<T> callback)
           
 void ExecutorServiceProxy.submitToMember(Runnable task, Member member, ExecutionCallback callback)
           
 

Constructors in com.hazelcast.executor.impl with parameters of type ExecutionCallback
ExecutionCallbackAdapter(ExecutionCallback executionCallback)
           
 

Uses of ExecutionCallback in com.hazelcast.map.impl.proxy
 

Methods in com.hazelcast.map.impl.proxy with parameters of type ExecutionCallback
 void MapProxyImpl.submitToKey(K key, EntryProcessor entryProcessor, ExecutionCallback callback)
           
 

Uses of ExecutionCallback in com.hazelcast.spi.impl
 

Methods in com.hazelcast.spi.impl with parameters of type ExecutionCallback
 void AbstractCompletableFuture.andThen(ExecutionCallback<V> callback)
           
 void AbstractCompletableFuture.andThen(ExecutionCallback<V> callback, Executor executor)
           
 

Uses of ExecutionCallback in com.hazelcast.util.executor
 

Methods in com.hazelcast.util.executor with parameters of type ExecutionCallback
 void CompletableFutureTask.andThen(ExecutionCallback<V> callback)
           
 void DelegatingFuture.andThen(ExecutionCallback<V> callback)
           
 void CompletedFuture.andThen(ExecutionCallback<V> callback)
           
 void CompletableFutureTask.andThen(ExecutionCallback<V> callback, Executor executor)
           
 void DelegatingFuture.andThen(ExecutionCallback<V> callback, Executor executor)
           
 void CompletedFuture.andThen(ExecutionCallback<V> callback, Executor executor)
           
 



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