Class that stores a pointer to a method of an object. It holds a pointer to a method suitable for handling input of data feeds. More...
#include <DataFeedInputHandlerMethod.hpp>
Public Member Functions | |
virtual void | callHandler (shared_ptr< DataBox > dataBox) |
Method call. | |
DataFeedInputHandlerMethod (o *object, DATA_FEED_HANDLER_METHOD method) | |
Contstructor. |
Class that stores a pointer to a method of an object. It holds a pointer to a method suitable for handling input of data feeds.
Definition at line 72 of file DataFeedInputHandlerMethod.hpp.
mermaid::support::service::DataFeedInputHandlerMethod< o >::DataFeedInputHandlerMethod | ( | o * | object, | |
DATA_FEED_HANDLER_METHOD | method | |||
) | [inline] |
Contstructor.
object | Object instance on which the method shall be called | |
method | Method of the object's class |
Definition at line 81 of file DataFeedInputHandlerMethod.hpp.
virtual void mermaid::support::service::DataFeedInputHandlerMethod< o >::callHandler | ( | shared_ptr< DataBox > | dataBox | ) | [inline, virtual] |
Method call.
dataBox | DataBox containing the input data. |
Implements mermaid::support::service::DataFeedInputHandlerMethodBase.
Definition at line 90 of file DataFeedInputHandlerMethod.hpp.