|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.hazelcast.mapreduce.KeyValueSource<K,V> com.hazelcast.mapreduce.impl.MultiMapKeyValueSource<K,V>
K
- type of the key of the MultiMapV
- type of the value of the MultiMappublic class MultiMapKeyValueSource<K,V>
This KeyValueSource
implementation is used in
KeyValueSource.fromMultiMap(com.hazelcast.core.MultiMap)
to generate a default
implementation based on a Hazelcast MultiMap
.
Constructor Summary | |
---|---|
MultiMapKeyValueSource(String multiMapName)
|
Method Summary | |
---|---|
void |
close()
|
Map.Entry<K,V> |
element()
Returns the current index' element Calls to this method won't change state. |
int |
getFactoryId()
Returns DataSerializableFactory factory id for this class. |
int |
getId()
Returns type identifier for this class. |
boolean |
hasNext()
Called to request if at least one more key-value pair is available from this data source. |
K |
key()
Returns the current index' key for KeyPredicate analysis. |
boolean |
open(NodeEngine nodeEngine)
This method is called before accessing the key-value pairs of this KeyValueSource |
void |
readData(ObjectDataInput in)
Reads fields from the input stream |
boolean |
reset()
This method need to reset all internal state as it would be a new instance at all. |
void |
setPartitionId(int partitionId)
Sets the partition id the implementing instance is executed against |
void |
writeData(ObjectDataOutput out)
Writes object fields to output stream |
Methods inherited from class com.hazelcast.mapreduce.KeyValueSource |
---|
fromList, fromMap, fromMultiMap, fromSet, getAllKeys, getAllKeys0, isAllKeysSupported |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MultiMapKeyValueSource(String multiMapName)
Method Detail |
---|
public boolean open(NodeEngine nodeEngine)
KeyValueSource
open
in class KeyValueSource<K,V>
nodeEngine
- nodeEngine of this cluster node
public void close() throws IOException
close
in interface Closeable
IOException
public boolean hasNext()
KeyValueSource
hasNext
in class KeyValueSource<K,V>
public K key()
KeyValueSource
KeyPredicate
analysis. This is called
to prevent a possible deserialization of unneeded values because the key is not
interesting for the running mapreduce algorithm.
Calls to this method won't change state.
key
in class KeyValueSource<K,V>
KeyPredicate
analysispublic Map.Entry<K,V> element()
KeyValueSource
element
in class KeyValueSource<K,V>
public boolean reset()
KeyValueSource
PartitionIdAware
.KeyValueSource.reset()
, KeyValueSource.open(com.hazelcast.spi.NodeEngine)
and Closeable.close()
is called multiple times with the other methods between open(...) and close().
reset
in class KeyValueSource<K,V>
public void setPartitionId(int partitionId)
PartitionIdAware
setPartitionId
in interface PartitionIdAware
partitionId
- current partitionIdpublic void writeData(ObjectDataOutput out) throws IOException
DataSerializable
writeData
in interface DataSerializable
out
- output
IOException
public void readData(ObjectDataInput in) throws IOException
DataSerializable
readData
in interface DataSerializable
in
- input
IOException
public int getFactoryId()
IdentifiedDataSerializable
getFactoryId
in interface IdentifiedDataSerializable
public int getId()
IdentifiedDataSerializable
getId
in interface IdentifiedDataSerializable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |