• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Method FinishReduce

FinishReduce()

This method will provide the task with the final result of the map reduce operation for specific intermediate key/value pair.

Declaration
KeyValuePair FinishReduce()
Returns
Type Description
KeyValuePair

Return key-value pair.

Examples
public KeyValuePair FinishReduce()
{
  KeyValuePair kvp = null;
  kvp.Key = key;
  kvp.Value = count;
  return kvp;
 }
Back to top Copyright © 2017 Alachisoft