Package edu.wpi.grip.core.events
Class SourceHasPendingUpdateEvent
- java.lang.Object
-
- edu.wpi.grip.core.events.SourceHasPendingUpdateEvent
-
- All Implemented Interfaces:
RunPipelineEvent
public final class SourceHasPendingUpdateEvent extends java.lang.Object implements RunPipelineEvent
An event that occurs when a source has an update pending for thePipelineRunner
to handle. This event should be triggered when a Source a value that is ready to be moved into one or more of its sockets. This event is not emitted to indicate that a socket has been changed, it just alerts thePipelineRunner
so that it can move the new value into the socket. The pipeline will respond by runningSource.updateOutputSockets()
in the pipeline thread.
-
-
Constructor Summary
Constructors Constructor Description SourceHasPendingUpdateEvent(Source source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Source
getSource()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface edu.wpi.grip.core.events.RunPipelineEvent
pipelineShouldRun
-
-