Method FinishChunk
FinishChunk()
When some specified chunk size is reached, combiners marks the functionality end on that chunk and send it to Reducer for further processing. And resets its internal state for next chunk.
Declaration
object FinishChunk()
Returns
Type | Description |
---|---|
System.Object | Sends the chunk to Reducer. |
Examples
Following example demonstrates how to implement FinishChunk.
public object FinishChunk()
{
return count;
}