You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/06/09 12:11:19 UTC

[incubator-streampipes-extensions] branch dev updated: Add signal edge detection to app pipeline elements

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git


The following commit(s) were added to refs/heads/dev by this push:
     new 2549ef7  Add signal edge detection to app pipeline elements
2549ef7 is described below

commit 2549ef7539c6f9826f6e55cfd51a26be5841dc7d
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Tue Jun 9 14:10:48 2020 +0200

    Add signal edge detection to app pipeline elements
---
 .../java/org/apache/streampipes/pe/jvm/AllPipelineElementsInit.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/streampipes-pipeline-elements-all-jvm/src/main/java/org/apache/streampipes/pe/jvm/AllPipelineElementsInit.java b/streampipes-pipeline-elements-all-jvm/src/main/java/org/apache/streampipes/pe/jvm/AllPipelineElementsInit.java
index c3eeba3..dd14fa1 100644
--- a/streampipes-pipeline-elements-all-jvm/src/main/java/org/apache/streampipes/pe/jvm/AllPipelineElementsInit.java
+++ b/streampipes-pipeline-elements-all-jvm/src/main/java/org/apache/streampipes/pe/jvm/AllPipelineElementsInit.java
@@ -62,6 +62,7 @@ import org.apache.streampipes.processors.textmining.jvm.processor.tokenizer.Toke
 import org.apache.streampipes.processors.transformation.jvm.processor.array.count.CountArrayController;
 import org.apache.streampipes.processors.transformation.jvm.processor.array.split.SplitArrayController;
 import org.apache.streampipes.processors.transformation.jvm.processor.booloperator.counter.BooleanCounterController;
+import org.apache.streampipes.processors.transformation.jvm.processor.booloperator.edge.SignalEdgeFilterController;
 import org.apache.streampipes.processors.transformation.jvm.processor.booloperator.inverter.BooleanInverterController;
 import org.apache.streampipes.processors.transformation.jvm.processor.booloperator.state.BooleanToStateController;
 import org.apache.streampipes.processors.transformation.jvm.processor.booloperator.timekeeping.BooleanTimekeepingController;
@@ -155,6 +156,7 @@ public class AllPipelineElementsInit extends StandaloneModelSubmitter {
             .add(new BooleanTimerController())
             .add(new StateBufferController())
             .add(new StateLabelerController())
+            .add(new SignalEdgeFilterController())
             .add(new BooleanToStateController())
             .add(new CsvMetadataEnrichmentController())
             .add(new TaskDurationController())