Cyclone ISO C++ API Reference Guide
dds::topic::AnyTopicListener Class Referenceabstract

AnyTopic events Listener. More...

#include "AnyTopicListener.hpp"

Inherited by dds::domain::DomainParticipantListener [virtual], and dds::topic::NoOpAnyTopicListener [virtual].

Public Member Functions

virtual void on_inconsistent_topic (AnyTopic &topic, const dds::core::status::InconsistentTopicStatus &status)=0
 

Detailed Description

AnyTopic events Listener.

Because the DomainParticipant does not have knowledge of data types, it has 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.

See also
dds::domain::DomainParticipantListener

Definition at line 46 of file AnyTopicListener.hpp.

Member Function Documentation

◆ on_inconsistent_topic()

virtual void dds::topic::AnyTopicListener::on_inconsistent_topic ( AnyTopic topic,
const dds::core::status::InconsistentTopicStatus status 
)
pure virtual

This operation is called by the Data Distribution Service when the InconsistentTopicStatus changes.

The implementation may be left empty when this functionality is not needed. This operation will only be called when the relevant TopicListener is installed and enabled with the StatusMask::inconsistent_topic(). The InconsistentTopicStatus will change when another Topic exists with the same topic_name but different characteristics.

Parameters
topiccontain a pointer to the Topic on which the conflict occurred (this is an input to the application).
statuscontain the InconsistentTopicStatus object (this is an input to the application).

The documentation for this class was generated from the following file: