 | WordCountReduceWordCount Method |
Reduces the word count.
Namespace: Ookii.Jumbo.Jet.SamplesAssembly: Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static void ReduceWordCount(
Utf8String key,
IEnumerable<int> values,
RecordWriter<Pair<Utf8String, int>> output
)
Public Shared Sub ReduceWordCount (
key As Utf8String,
values As IEnumerable(Of Integer),
output As RecordWriter(Of Pair(Of Utf8String, Integer))
)
public:
static void ReduceWordCount(
Utf8String^ key,
IEnumerable<int>^ values,
RecordWriter<Pair<Utf8String^, int>^>^ output
)
static member ReduceWordCount :
key : Utf8String *
values : IEnumerable<int> *
output : RecordWriter<Pair<Utf8String, int>> -> unit
Parameters
- key Utf8String
- The key.
- values IEnumerableInt32
- The values.
- output RecordWriterPairUtf8String, Int32
- The output.
See Also