Tom Goong created FLINK-12014:
---------------------------------
Summary: Flink CEP Doc missing "SkipToNextStrategy"
Key: FLINK-12014
URL:
https://issues.apache.org/jira/browse/FLINK-12014 Project: Flink
Issue Type: Bug
Components: Documentation
Reporter: Tom Goong
Assignee: Tom Goong
in cep.md file,The following description misses *SkipToNextStrategy*
### After Match Skip Strategy
For a given pattern, the same event may be assigned to multiple successful matches. To control to how many matches an event will be assigned, you need to specify the skip strategy called `AfterMatchSkipStrategy`. There are four types of skip strategies, listed as follows:
* <strong>*NO_SKIP*</strong>: Every possible match will be emitted.
* <strong>*SKIP_PAST_LAST_EVENT*</strong>: Discards every partial match that started after the match started but before it ended.
* <strong>*SKIP_TO_FIRST*</strong>: Discards every partial match that started after the match started but before the first event of *PatternName* occurred.
* <strong>*SKIP_TO_LAST*</strong>: Discards every partial match that started after the match started but before the last event of *PatternName* occurred.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)