All Downloads are FREE. Search and download functionalities are using the official Maven repository.

stream.flow.Skip.md Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show newest version
Skip
====

This processor will simply skip all events matching a
given condition. If no condition is specified, the processor
will skip all events.

The condition must be a bool expression created from numerical
operators like `@eq`, `@gt`, `@ge`, `@lt` or `@le`. In addition
to those numerical tests the `@rx` operator followed by a regular
expression can be used.

The general syntax is

       variable  operator  argument

For example, the following expression will check the value of
attribute `x1` against the 0.5 threshold:

       %{data.x1} @gt 0.5

 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy