Skip to content

Commit

Permalink
[hotfix] [docs] Method name for PatternFlatSelectFunction should be f…
Browse files Browse the repository at this point in the history
…latSelect

This closes #4687.
  • Loading branch information
alpinegizmo authored and tzulitai committed Sep 26, 2017
1 parent 2b82578 commit 415e7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev/libs/cep.md
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ used to forward your output elements downstream.
{% highlight java %}
class MyPatternFlatSelectFunction<IN, OUT> implements PatternFlatSelectFunction<IN, OUT> {
@Override
public void select(Map<String, List<IN>> pattern, Collector<OUT> collector) {
public void flatSelect(Map<String, List<IN>> pattern, Collector<OUT> collector) {
IN startEvent = pattern.get("start").get(0);
IN endEvent = pattern.get("end").get(0);

Expand Down

0 comments on commit 415e7d0

Please sign in to comment.