Interface InnerSortFlusher
-
- All Known Implementing Classes:
CombineKvInnerSortFlusher,CombineSubKvInnerSortFlusher,KvInnerSortFlusher
public interface InnerSortFlusher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PointerCombinercombiner()Combine entries with the same key.voidflush(java.util.Iterator<KvEntry> entries)Combine the list of inputValues, and write the combined result length and results to output.default org.apache.hugegraph.computer.core.io.RandomAccessOutputoutput()Flush result to this output.
-
-
-
Method Detail
-
output
default org.apache.hugegraph.computer.core.io.RandomAccessOutput output()
Flush result to this output.
-
combiner
default PointerCombiner combiner()
Combine entries with the same key.
-
flush
void flush(java.util.Iterator<KvEntry> entries) throws java.io.IOException
Combine the list of inputValues, and write the combined result length and results to output.- Throws:
java.io.IOException
-
-