Package edu.wpi.grip.core.events
Interface RunPipelineEvent
-
- All Known Implementing Classes:
ConnectionAddedEvent
,SocketChangedEvent
,SourceHasPendingUpdateEvent
,StartSingleBenchmarkRunEvent
public interface RunPipelineEvent
Any event that indicates to thePipelineRunner
that it should run.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default boolean
pipelineShouldRun()
Indicates to thePipelineRunner
that there is an update to one of the values and it should run again.
-
-
-
Method Detail
-
pipelineShouldRun
default boolean pipelineShouldRun()
Indicates to thePipelineRunner
that there is an update to one of the values and it should run again.- Returns:
- true if the
PipelineRunner.pipelineFlag
should be released.
-
-