public static class TwitterExample.SelectEnglishAndTokenizeFlatMap extends Object implements FlatMapFunction<String,Tuple2<String,Integer>>
Implements a string tokenizer that splits sentences into words as a
user-defined FlatMapFunction. The function takes a line (String) and
splits it into multiple pairs in the form of "(word,1)" (Tuple2<String,
Integer>
).
Constructor and Description |
---|
SelectEnglishAndTokenizeFlatMap() |
Modifier and Type | Method and Description |
---|---|
void |
flatMap(String value,
Collector<Tuple2<String,Integer>> out)
Select the language from the incoming JSON text.
|
public void flatMap(String value, Collector<Tuple2<String,Integer>> out) throws Exception
flatMap
in interface FlatMapFunction<String,Tuple2<String,Integer>>
value
- The input value.out
- The collector for returning result values.Exception
- This method may throw exceptions. Throwing an exception will cause the operation
to fail and may trigger recovery.Copyright © 2014–2018 The Apache Software Foundation. All rights reserved.