Package org.sensorhub.api.processing
Interface IStreamProcess
- All Superinterfaces:
ICommandReceiver
,IDataProcess
,IDataProducer
,IEventProducer
,ISystemDriver
-
Method Summary
Methods inherited from interface org.sensorhub.api.command.ICommandReceiver
getCommandInputs
Methods inherited from interface org.sensorhub.api.processing.IDataProcess
getInputDescriptors, getOutputDescriptors, getParameterDescriptors
Methods inherited from interface org.sensorhub.api.data.IDataProducer
getCurrentFeaturesOfInterest, getOutputs
Methods inherited from interface org.sensorhub.api.event.IEventProducer
registerListener, unregisterListener
Methods inherited from interface org.sensorhub.api.system.ISystemDriver
getCurrentDescription, getDescription, getLatestDescriptionUpdate, getName, getParentSystem, getParentSystemUID, getUniqueIdentifier, isEnabled
-
Method Details
-
pause
void pause()Pauses process execution.
Incoming events are simply discarded and won't be processed when the process is resumed. -
resume
void resume()Resumes normal process execution.
Processing may actually resume only when the next event is received.
-