Cyclone ISO C++ API Reference Guide
|
AnyDataWriter events Listener. More...
#include "AnyDataWriterListener.hpp"
Inherited by dds::pub::NoOpAnyDataWriterListener [virtual]
, and dds::pub::PublisherListener [virtual]
.
Public Member Functions | |
virtual void | on_liveliness_lost (dds::pub::AnyDataWriter &writer, const ::dds::core::status::LivelinessLostStatus &status)=0 |
virtual void | on_offered_deadline_missed (dds::pub::AnyDataWriter &writer, const ::dds::core::status::OfferedDeadlineMissedStatus &status)=0 |
virtual void | on_offered_incompatible_qos (dds::pub::AnyDataWriter &writer, const ::dds::core::status::OfferedIncompatibleQosStatus &status)=0 |
virtual void | on_publication_matched (dds::pub::AnyDataWriter &writer, const ::dds::core::status::PublicationMatchedStatus &status)=0 |
AnyDataWriter events Listener.
Because Publisher and DomainParticipant do not have knowledge of data types, they have to use non-data-type-listeners. In other words Any* listeners.
All operations for this interface must be implemented in the user-defined class, it is up to the application whether an operation is empty or contains some functionality.
This class is used as a base for other listeners and is not used on its own.
Definition at line 51 of file AnyDataWriterListener.hpp.
|
pure virtual |
This operation is called by the Data Distribution Service when the LivelinessLostStatus changes.
This operation will only be called when the relevant DataWriterListener is installed and enabled for the liveliness lost status (StatusMask::liveliness_lost()). The liveliness lost status will change when the liveliness that the DataWriter has committed through its LivelinessQosPolicy was not respected. In other words, the DataWriter failed to actively signal its liveliness within the offered liveliness period. As a result, the DataReader objects will consider the DataWriter as no longer “alive”.
writer | contains a pointer to the DataWriter on which the LivelinessLostStatus has changed (this is an input to the application). |
status | contains the LivelinessLostStatus object (this is an input to the application). |
|
pure virtual |
This operation is called by the Data Distribution Service when the OfferedDeadlineMissedStatus changes.
This operation will only be called when the relevant DataWriterListener is installed and enabled for the offered deadline missed status (StatusMask::offered_deadline_missed()). The offered deadline missed status will change when the deadline that the DataWriter has committed through its DeadlineQosPolicy was not respected for a specific instance.
writer | contain a pointer to the DataWriter on which the OfferedDeadlineMissedStatus has changed (this is an input to the application) |
status | contain the OfferedDeadlineMissedStatus object (this is an input to the application). |
|
pure virtual |
This operation called by the Data Distribution Service when the OfferedIncompatibleQosStatus changes.
This operation will only be called when the relevant DataWriterListener is installed and enabled for the StatusMask::offered_incompatible_qos(). The incompatible Qos status will change when a DataReader object has been discovered by the DataWriter with the same Topic and a requested DataReaderQos that was incompatible with the one offered by the DataWriter.
writer | contain a pointer to the DataWriter on which the OfferedIncompatibleQosStatus has changed (this is an input to the application). |
status | contain the OfferedIncompatibleQosStatus object (this is an input to the application). |
|
pure virtual |
This operation is called by the Data Distribution Service when a new match has been discovered for the current publication, or when an existing match has ceased to exist.
Usually this means that a new DataReader that matches the Topic and that has compatible Qos as the current DataWriter has either been discovered, or that a previously discovered DataReader has ceased to be matched to the current DataWriter. A DataReader may cease to match when it gets deleted, when it changes its Qos to a value that is incompatible with the current DataWriter or when either the DataWriter or the DataReader has chosen to put its matching counterpart on its ignore-list using the dds::sub::ignore or dds::pub::ignore operations.
it will only be called when the relevant DataWriterListener is installed and enabled for the StatusMask::publication_matched().
writer | contains a pointer to the DataWriter for which a match has been discovered (this is an input to the application provided by the Data Distribution Service). |
status | contains the PublicationMatchedStatus object (this is an input to the application provided by the Data Distribution Service). |