Package | Description |
---|---|
com.hazelcast.client.proxy |
This package contains client side proxy implementations of the different Hazelcast data structures
and operation types
|
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. |
Modifier and Type | Method and Description |
---|---|
<K,V> Job<K,V> |
ClientMapReduceProxy.newJob(KeyValueSource<K,V> source) |
Modifier and Type | Method and Description |
---|---|
static <V> KeyValueSource<String,V> |
KeyValueSource.fromList(IList<? extends V> list)
Deprecated.
A helper method to build a KeyValueSource implementation based on the specified
IList .The key returned by this KeyValueSource implementation is ALWAYS the name of the list itself, whereas the value are the entries of the list, one by one. |
static <K,V> KeyValueSource<K,V> |
KeyValueSource.fromMap(IMap<? super K,? extends V> map)
Deprecated.
A helper method to build a KeyValueSource implementation based on the specified
IMap |
static <K,V> KeyValueSource<K,V> |
KeyValueSource.fromMultiMap(MultiMap<? super K,? extends V> multiMap)
Deprecated.
A helper method to build a KeyValueSource implementation based on the specified
MultiMap |
static <V> KeyValueSource<String,V> |
KeyValueSource.fromSet(ISet<? extends V> set)
Deprecated.
A helper method to build a KeyValueSource implementation based on the specified
ISet .The key returned by this KeyValueSource implementation is ALWAYS the name of the set itself, whereas the value are the entries of the set, one by one. |
Modifier and Type | Method and Description |
---|---|
<K,V> Job<K,V> |
JobTracker.newJob(KeyValueSource<K,V> source)
Deprecated.
Builds a
Job instance for the given KeyValueSource instance. |
Copyright © 2018 Hazelcast, Inc.. All rights reserved.