Method Combine
Combine(Object)
Combines the task results locally so Reducer is not burdened with excessive processing.
Declaration
void Combine(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | Value for making grouped data for reducer. |
Examples
Following example demonstrates how to implement Combine.
public void Combine(object value)
{
count += int.Parse(value.ToString());
}