RTI Routing Service Version 7.3.0
rti::routing::processor::NoOpProcessor Class Reference

An empty implementation of the pure virtual interface rti::routing::processor::Processor. More...

#include <Processor.hpp>

Inheritance diagram for rti::routing::processor::NoOpProcessor:
rti::routing::processor::Processor rti::routing::UpdatableEntity

Additional Inherited Members

- Public Member Functions inherited from rti::routing::processor::Processor
virtual void on_input_enabled (Route &route, rti::routing::processor::Input &input)=0
 Notification of the INPUT_ENABLED event. More...
 
virtual void on_input_disabled (Route &route, rti::routing::processor::Input &input)=0
 Notification of the Input disabled event. More...
 
virtual void on_output_enabled (Route &route, rti::routing::processor::Output &output)=0
 Notification of the Output enabled event. More...
 
virtual void on_output_disabled (Route &route, rti::routing::processor::Output &output)=0
 Notification of the Output disabled event. More...
 
virtual void on_start (Route &route)=0
 Notification of the Route started event. More...
 
virtual void on_stop (Route &route)=0
 Notification of the Route stopped event. More...
 
virtual void on_run (Route &route)=0
 Notification of the Route RUN event. More...
 
virtual void on_pause (Route &route)=0
 Notification of the Route stopped event. More...
 
virtual void on_periodic_action (Route &route)=0
 Notification of the Route periodic action event. More...
 
virtual void on_data_available (Route &route)=0
 Notification of the Route DATA_AVAILABLE event. More...
 
virtual ~Processor ()
 Virtual destructor. More...
 
- Public Member Functions inherited from rti::routing::UpdatableEntity
virtual void update (const std::map< std::string, std::string > &properties)
 Updates a pluggable entity. More...
 
virtual ~UpdatableEntity ()
 Virtual destructor. More...
 

Detailed Description

An empty implementation of the pure virtual interface rti::routing::processor::Processor.

Your Processor implementation can inherit from this class and override just the methods that are of interest.