Github user kl0u commented on a diff in the pull request:
https://github.com/apache/flink/pull/4143#discussion_r123715144
--- Diff: docs/dev/libs/cep.md ---
@@ -547,18 +579,30 @@ pattern.where(event => ... /* some condition */)
<tr>
<td><strong>or(condition)</strong></td>
<td>
- <p>Adds a new condition which is ORed with an existing
one. An event can match the pattern only if it
+ <p>Adds a new condition which is ORed with an existing
one. An event can match the pattern only if it
passes at least one of the conditions:</p>
{% highlight scala %}
pattern.where(event => ... /* some condition */)
.or(event => ... /* alternative condition */)
{% endhighlight %}
</td>
</tr>
+<tr>
+ <td><strong>until(condition)</strong></td>
+ <td>
+ <p>Specifies a stop condition for kleene operator. Meaning
if event matching the given condition occurs, no more
--- End diff --
Same here for the "kleene operator".
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---