![]() |
Imt.Base C++ API V4.1.1.0
|
Messages can be sent on the output port. More...
#include <Imt.Base.Dff.ActiveParts/inc/Imt.Base.Dff.ActiveParts/PortOutput.h>
Public Member Functions | |
PortOutput ()=default | |
Constructor. | |
void | write (uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes) final |
Write data to port (is sent via the ChannelIfc) | |
virtual void | setChannel (ChannelIfc &channel) |
Set the channel to transport the message. | |
ChannelIfc const * | getChannel () const |
Get the read only pointer to the channel. | |
![]() | |
virtual void | write (uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes)=0 |
Write object. | |
virtual | ~SerializableSenderIfc ()=default |
Protected Member Functions | |
ChannelIfc * | getChannel () |
Get the modifiable pointer to the channel. | |
![]() | |
SerializableSenderIfc () noexcept=default | |
SerializableSenderIfc (SerializableSenderIfc const &) noexcept=delete | |
SerializableSenderIfc (SerializableSenderIfc &&) noexcept=delete | |
SerializableSenderIfc & | operator= (SerializableSenderIfc const &) &noexcept=delete |
SerializableSenderIfc & | operator= (SerializableSenderIfc &&) &noexcept=delete |
Messages can be sent on the output port.
An ActivePart can have 0 to N output ports.
Definition at line 53 of file PortOutput.h.
|
default |
Constructor.
|
protected |
Get the modifiable pointer to the channel.
ChannelIfc const * imt::base::dff::activeparts::PortOutput::getChannel | ( | ) | const |
Get the read only pointer to the channel.
|
virtual |
Set the channel to transport the message.
channel | Channel to be set |
Reimplemented in imt::base::dff::activeparts::PortOutputJoin< NumberOfPortsToJoin >.
|
finalvirtual |
Write data to port (is sent via the ChannelIfc)
protocolIdentifier | identifier of protocol, is required for the receiver |
pEventData | pointer to serializable event data, can also be nullptr |
eventDataSizeBytes | Maximum size of the serialized event data in bytes. Used to determine whether to use a small or normal event for sending. |
Implements imt::base::core::serialization::SerializableSenderIfc.