Uses of Interface
com.hazelcast.core.ICompletableFuture

Packages that use ICompletableFuture
com.hazelcast.client.spi   
com.hazelcast.core Provides core API interfaces/classes. 
com.hazelcast.mapreduce This package contains the MapReduce API definition for Hazelcast.
All map reduce operations running in a distributed manner inside the active Hazelcast cluster. 
com.hazelcast.spi Provides interfaces/classes for Hazelcast SPI. 
 

Uses of ICompletableFuture in com.hazelcast.client.spi
 

Methods in com.hazelcast.client.spi that return ICompletableFuture
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnKeyOwner(ClientRequest request, Object key)
           
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnKeyOwner(ClientRequest request, Object key, EventHandler handler)
           
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnRandomTarget(ClientRequest request)
           
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnRandomTarget(ClientRequest request, EventHandler handler)
           
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnTarget(ClientRequest request, com.hazelcast.nio.Address target)
           
<T> ICompletableFuture<T>
ClientInvocationService.invokeOnTarget(ClientRequest request, com.hazelcast.nio.Address target, EventHandler handler)
           
<T> ICompletableFuture<T>
ClientExecutionService.submit(Callable<T> task)
           
 ICompletableFuture<?> ClientExecutionService.submit(Runnable task)
           
 

Uses of ICompletableFuture in com.hazelcast.core
 

Methods in com.hazelcast.core that return ICompletableFuture
 ICompletableFuture<Long> AsyncAtomicLong.asyncAddAndGet(long delta)
           
 ICompletableFuture<Void> AsyncAtomicReference.asyncAlter(IFunction<E,E> function)
           
 ICompletableFuture<Void> AsyncAtomicLong.asyncAlter(IFunction<Long,Long> function)
           
 ICompletableFuture<E> AsyncAtomicReference.asyncAlterAndGet(IFunction<E,E> function)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncAlterAndGet(IFunction<Long,Long> function)
           
<R> ICompletableFuture<R>
AsyncAtomicReference.asyncApply(IFunction<E,R> function)
           
<R> ICompletableFuture<R>
AsyncAtomicLong.asyncApply(IFunction<Long,R> function)
           
 ICompletableFuture<Void> AsyncAtomicReference.asyncClear()
           
 ICompletableFuture<Boolean> AsyncAtomicReference.asyncCompareAndSet(E expect, E update)
           
 ICompletableFuture<Boolean> AsyncAtomicLong.asyncCompareAndSet(long expect, long update)
           
 ICompletableFuture<Boolean> AsyncAtomicReference.asyncContains(E value)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncDecrementAndGet()
           
 ICompletableFuture<E> AsyncAtomicReference.asyncGet()
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGet()
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGetAndAdd(long delta)
           
 ICompletableFuture<E> AsyncAtomicReference.asyncGetAndAlter(IFunction<E,E> function)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGetAndAlter(IFunction<Long,Long> function)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGetAndIncrement()
           
 ICompletableFuture<E> AsyncAtomicReference.asyncGetAndSet(E newValue)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncGetAndSet(long newValue)
           
 ICompletableFuture<Long> AsyncAtomicLong.asyncIncrementAndGet()
           
 ICompletableFuture<Boolean> AsyncAtomicReference.asyncIsNull()
           
 ICompletableFuture<Void> AsyncAtomicReference.asyncSet(E newValue)
           
 ICompletableFuture<Void> AsyncAtomicLong.asyncSet(long newValue)
           
 ICompletableFuture<E> AsyncAtomicReference.asyncSetAndGet(E update)
           
 

Uses of ICompletableFuture in com.hazelcast.mapreduce
 

Subinterfaces of ICompletableFuture in com.hazelcast.mapreduce
 interface JobCompletableFuture<V>
          This is a special version of ICompletableFuture to return the assigned job id of the submit operation.
 

Methods in com.hazelcast.mapreduce that return ICompletableFuture
 ICompletableFuture<V> TrackableJob.getCompletableFuture()
          Returns the ICompletableFuture to add callbacks or wait for the resulting value of the tracked job
 

Uses of ICompletableFuture in com.hazelcast.spi
 

Subinterfaces of ICompletableFuture in com.hazelcast.spi
 interface InternalCompletableFuture<E>
          A ICompletableFuture with more functionality like getting the result without needing to deal with checked exceptions.
 

Methods in com.hazelcast.spi that return ICompletableFuture
<V> ICompletableFuture<V>
ExecutionService.asCompletableFuture(Future<V> future)
           
 



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