#include <ControllerStateChangedCallback.hpp>
Inheritance diagram for CarobNS::ControllerStateChangedCallback:
Public Member Functions | |
virtual void | onControllerDown (const ControllerInfo &ctrl)=0 |
What to do when a controller stops responding to pings? Warning: execution time is critical here, if the method's implementation is too slow, thread it! | |
virtual void | onControllerUp (const ControllerInfo &ctrl)=0 |
What to do when a controller responds again to pings after having been detected as failed Warning: execution time is critical here, if the method's implementation is too slow, thread it! | |
virtual | ~ControllerStateChangedCallback () |
Mandatory destructor. |
Note that the processing time of these two methods implementation is critical: if needed, thread them!