Uses of Class
com.hazelcast.mapreduce.KeyValueSource

Packages that use KeyValueSource
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. 
 

Uses of KeyValueSource in com.hazelcast.mapreduce
 

Methods in com.hazelcast.mapreduce that return KeyValueSource
static
<V> KeyValueSource<String,V>
KeyValueSource.fromList(IList<V> list)
          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 list one by one.
static
<K,V> KeyValueSource<K,V>
KeyValueSource.fromMap(IMap<K,V> map)
          A helper method to build a KeyValueSource implementation based on the specified IMap
static
<K,V> KeyValueSource<K,V>
KeyValueSource.fromMultiMap(MultiMap<K,V> multiMap)
          A helper method to build a KeyValueSource implementation based on the specified MultiMap
static
<V> KeyValueSource<String,V>
KeyValueSource.fromSet(ISet<V> set)
          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 set one by one.
 

Methods in com.hazelcast.mapreduce with parameters of type KeyValueSource
<K,V> Job<K,V>
JobTracker.newJob(KeyValueSource<K,V> source)
          Builds a Job instance for the given KeyValueSource instance.
 



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