| WordCountReduceWordCount Method |
Reduces the word count.
Namespace:
Ookii.Jumbo.Jet.Samples
Assembly:
Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 2.0.0
Syntax public 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
- Type: Ookii.Jumbo.IOUtf8String
The key. - values
- Type: System.Collections.GenericIEnumerableInt32
The values. - output
- Type: Ookii.Jumbo.IORecordWriterPairUtf8String, Int32
The output.
See Also