Page MenuHomePhorge

MessagingSystemImpl.cpp
No OneTemporary

Size
815 B
Referenced Files
None
Subscribers
None

MessagingSystemImpl.cpp

/***************************************************************************//**
*
* \file core/MessagingSystemImpl.cpp
*
* \author David Juhasz (david.juhasz@tuwien.ac.at)
*
* \date 2017
*
* \brief Implementation for core/MessagingSystemImpl.hpp.
*
******************************************************************************/
#include "MessagingSystemImpl.hpp"
#include "rosa/core/Agent.hpp"
namespace rosa {
MessagingSystemImpl::MessagingSystemImpl(const std::string &Name) noexcept
: MessagingSystem(),
SystemImpl(Name) {
LOG_TRACE("System '" + Name + "' is a MessagingSystem");
}
void MessagingSystemImpl::send(const AgentHandle &H, message_t &&M) noexcept {
ASSERT(&unwrapSystem(H) == this && isUnitRegistered(unwrapAgent(H)));
unwrapAgent(H)(*M);
}
} // End namespace rosa

File Metadata

Mime Type
text/x-c++
Expires
Sun, Apr 12, 5:29 PM (18 h, 9 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
302969
Default Alt Text
MessagingSystemImpl.cpp (815 B)

Event Timeline