Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1494623
MessagingSystemImpl.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Size
963 B
Referenced Files
None
Subscribers
None
MessagingSystemImpl.cpp
View Options
//===-- core/MessageingSystemImpl.cpp ---------------------------*- C++ -*-===//
//
// The RoSA Framework
//
//===----------------------------------------------------------------------===//
///
/// \file core/MessagingSystemImpl.cpp
///
/// \author David Juhasz (david.juhasz@tuwien.ac.at)
///
/// \date 2017
///
/// \brief Implementation of 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
(
*
this
==
unwrapSystem
(
H
)
&&
isUnitRegistered
(
unwrapAgent
(
H
)));
unwrapAgent
(
H
)(
*
M
);
}
}
// End namespace rosa
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Mar 1, 6:50 PM (18 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
276867
Default Alt Text
MessagingSystemImpl.cpp (963 B)
Attached To
Mode
R20 SoC_Rosa_repo
Attached
Detach File
Event Timeline
Log In to Comment