Interface for classes which can handle incoming PDU's. More...
#include <connector.hpp>
Public Member Functions | |
| virtual void | handle_pdu (boost::shared_ptr< PDU >)=0 |
| Handler method for incoming PDU's. | |
Interface for classes which can handle incoming PDU's.
Classes which want to receive incoming PDU's implement this interface. An object of type pdu_handler can then be registered with a connector object to indicate that it wants to receive PDU's.
Definition at line 139 of file connector.hpp.
| virtual void agentxcpp::connector::pdu_handler::handle_pdu | ( | boost::shared_ptr< PDU > | ) | [pure virtual] |
Handler method for incoming PDU's.
When a PDU is received by the connector class, this method is called on the registered object. Note that ResponsePDU's are not handed over to the registered object.
Referenced by agentxcpp::connector::receive_callback().