Interface definition for communications fault handler. Defines the type of communcations faults that can be handled and the function callbacks that should be executed under the specific fault conditions. More...
#include <comms_fault_handler.h>
Public Member Functions | |
virtual void | connectionFailCB ()=0 |
Connection failure callback method. | |
virtual void | receiveFailCB ()=0 |
Receive failure callback method TODO: This callback may not be used. | |
virtual void | sendFailCB ()=0 |
Send failure callback method. TODO: This callback may not be used. |
Interface definition for communications fault handler. Defines the type of communcations faults that can be handled and the function callbacks that should be executed under the specific fault conditions.
Definition at line 46 of file comms_fault_handler.h.
virtual void industrial::comms_fault_handler::CommsFaultHandler::connectionFailCB | ( | ) | [pure virtual] |
Connection failure callback method.
Implemented in industrial::simple_comms_fault_handler::SimpleCommsFaultHandler.
virtual void industrial::comms_fault_handler::CommsFaultHandler::receiveFailCB | ( | ) | [pure virtual] |
Receive failure callback method TODO: This callback may not be used.
Implemented in industrial::simple_comms_fault_handler::SimpleCommsFaultHandler.
virtual void industrial::comms_fault_handler::CommsFaultHandler::sendFailCB | ( | ) | [pure virtual] |
Send failure callback method. TODO: This callback may not be used.
Implemented in industrial::simple_comms_fault_handler::SimpleCommsFaultHandler.