RTI Connext Java API  Version 6.1.1
TopicAdapter Class Referenceabstract

<<extension>> A listener adapter in the spirit of the Java AWT listener adapters. (The Adapter provides empty implementations for the listener methods) More...

Inheritance diagram for TopicAdapter:
TopicListener Listener

Public Member Functions

void on_inconsistent_topic (Topic topic, InconsistentTopicStatus status)
 Handle the com.rti.dds.infrastructure.StatusKind.StatusKind.INCONSISTENT_TOPIC_STATUS status. More...
 

Detailed Description

<<extension>> A listener adapter in the spirit of the Java AWT listener adapters. (The Adapter provides empty implementations for the listener methods)

Clients who do not wish to implement all listener methods can subclass this class and override only the methods of interest.

Member Function Documentation

◆ on_inconsistent_topic()

void on_inconsistent_topic ( Topic  topic,
InconsistentTopicStatus  status 
)

Handle the com.rti.dds.infrastructure.StatusKind.StatusKind.INCONSISTENT_TOPIC_STATUS status.

This callback is called when a remote com.rti.dds.topic.Topic is discovered but is inconsistent with the locally created com.rti.dds.topic.Topic of the same topic name.

Parameters
topic<<out>> Locally created com.rti.dds.topic.Topic that triggers the listener callback
status<<out>> Current inconsistent status of locally created com.rti.dds.topic.Topic

Implements TopicListener.