Vuo
0.4.1
|
A class provided for convenience when inheriting from VuoRunnerDelegate.
If inheriting from this class instead of VuoRunnerDelegate directly, the derived class does not need to implement all VuoRunnerDelegate methods.
Additional Inherited Members | |
![]() | |
virtual void | receivedTelemetryStats (unsigned long utime, unsigned long stime)=0 |
This delegate method is invoked twice per second, to provide a heartbeat indicating that the composition is still alive. | |
virtual void | receivedTelemetryNodeExecutionStarted (string nodeIdentifier)=0 |
This delegate method is invoked every time a node has started executing. | |
virtual void | receivedTelemetryNodeExecutionFinished (string nodeIdentifier)=0 |
This delegate method is invoked every time a node has finished executing. | |
virtual void | receivedTelemetryEdgeHit (string edgeIdentifier)=0 |
This delegate method is invoked every time an event has traversed a cable. | |
virtual void | receivedTelemetryInputPortUpdated (string portIdentifier, bool receivedEvent, bool receivedData, string dataAsString)=0 |
This delegate method is invoked every time any input port receives an event or data. | |
virtual void | receivedTelemetryOutputPortUpdated (string portIdentifier, bool sentData, string dataAsString)=0 |
This delegate method is invoked every time any output port conducts or fires an event. | |
virtual void | receivedTelemetryPublishedOutputPortUpdated (VuoRunner::Port *port, bool sentData, string dataAsString)=0 |
This delegate method is invoked every time any published output port conducts an event. | |
virtual void | receivedTelemetryError (string message)=0 |
This delegate method is invoked every time an uncaught error occurs in the composition. | |