Package | Description |
---|---|
com.hazelcast.client.spi |
Contains classes/interfaces related to Service Provider Interface
such as ClientProxy , ClientClusterService
|
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.
|
Modifier and Type | Method and Description |
---|---|
<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) |
<T> ICompletableFuture<T> |
ClientExecutionService.submitInternal(Callable<T> command) |
Modifier and Type | Interface and Description |
---|---|
interface |
JobCompletableFuture<V>
This is a special version of ICompletableFuture to return the assigned job
id of the submit operation.
|
Modifier and Type | Method and Description |
---|---|
ICompletableFuture<V> |
TrackableJob.getCompletableFuture()
Returns the
ICompletableFuture to add callbacks
or wait for the resulting value of the tracked job |
Modifier and Type | Interface and Description |
---|---|
interface |
InternalCompletableFuture<E>
A
ICompletableFuture with more functionality like getting
the result without needing to deal with checked exceptions. |
Modifier and Type | Method and Description |
---|---|
<V> ICompletableFuture<V> |
ExecutionService.asCompletableFuture(Future<V> future) |
Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.