Base class for all ServiceInterfaceHandlerMethod objects. More...
#include <ServiceInterfaceHandlerMethod.hpp>
Public Member Functions | |
virtual void | callHandler (shared_ptr< ServiceRequest > request, shared_ptr< ServiceReply > reply)=0 |
Handler call method. |
Base class for all ServiceInterfaceHandlerMethod objects.
This class is needed in order to call ServiceInterfaceHandlerMethod without having to know the specific class used by the template.
Definition at line 55 of file ServiceInterfaceHandlerMethod.hpp.
virtual void mermaid::support::service::ServiceInterfaceHandlerMethodBase::callHandler | ( | shared_ptr< ServiceRequest > | request, | |
shared_ptr< ServiceReply > | reply | |||
) | [pure virtual] |
Handler call method.
This method calls the handler to which the instance of this class points to.
Implemented in mermaid::support::service::ServiceInterfaceHandlerMethod< o >.