Go to the documentation of this file.
12 #ifndef RTCTK_COMPONENTFRAMEWORK_MEASCMDSIMPL_HPP
13 #define RTCTK_COMPONENTFRAMEWORK_MEASCMDSIMPL_HPP
15 #include <Rtctkif.hpp>
17 #include <rtctk/componentFramework/events.rad.hpp>
22 #include <mal/Cii.hpp>
35 std::shared_ptr<elt::mal::rr::RrEntity> rr_service = std::make_shared<MeasCmdsImpl>(engine);
36 replier.
RegisterService<rtctkif::AsyncMeasCmds>(
"MeasCmds", rr_service);
42 ::elt::mal::future<std::string>
Measure(std::string
const& args)
override {
43 LOG4CPLUS_TRACE(
GetLogger(),
"Received command 'Measure' with payload '" + args +
"'");
44 return InjectReqRepEvent<events::Measure>(this->m_engine, args);
Receive commands via MAL.
Wrapper around the SCXML State Machine Engine.
Definition: commandReplier.cpp:20
Definition: stateMachineEngine.hpp:31
::elt::mal::future< std::string > Measure(std::string const &args) override
Definition: measCmdsImpl.hpp:42
log4cplus::Logger & GetLogger(const std::string &name="")
Get handle to a specific logger (used with logging macros)
static void Register(CommandReplier &replier, StateMachineEngine &engine)
Definition: measCmdsImpl.hpp:34
Class that handles reception of commands using MAL.
Definition: commandReplier.hpp:26
MeasCmdsImpl(StateMachineEngine &engine)
Definition: measCmdsImpl.hpp:39
Class that handles reception of command Measure using MAL.
Definition: measCmdsImpl.hpp:32
Logging Support Library based on log4cplus.
void RegisterService(std::string const &name, std::shared_ptr< elt::mal::rr::RrEntity > &service)
Definition: commandReplier.hpp:33
Provides core functionality of an RTC Component.