CoreDX DDS C# Reference Manual
Public Member Functions | List of all members
Topic Class Reference
Inheritance diagram for Topic:
DomainEntity TopicDescription Entity

Public Member Functions

DomainParticipant get_participant ()
 
String get_type_name ()
 
String get_name ()
 
override ReturnCode_t enable ()
 
override InstanceHandle_t get_instance_handle ()
 
ReturnCode_t set_qos (TopicQos qos)
 
ReturnCode_t get_qos (TopicQos qos)
 
ReturnCode_t set_listener (TopicListener new_listener, uint mask)
 
TopicListener get_listener ()
 
ReturnCode_t get_inconsistent_topic_status (out InconsistentTopicStatus status)
 
- Public Member Functions inherited from Entity
virtual StatusCondition get_statuscondition ()
 
virtual uint get_status_changes ()
 

Detailed Description

Topic is the basic description of data to be published or subscribed. A topic is identified by a name and a type. A Topic is created by calling DomainParticipant.create_topic(). Prior to creating a Topic, the associated data type must be registered with the DomainParticipant via a call to the TypeSupportXYZ.register_type() function. [The register_type() function is auto-generated 'type-specific' code.]

Member Function Documentation

override ReturnCode_t enable ( )
inlinevirtual

Enables the Topic. A Topic is created either enabled or not based on the DomainParticipantQos setting entity_factory. When a Topic is not enabled, only the following sub-set of all Topic operations are legal:

Any other operation may return the ReturnCode_t.RETURNCODE_NOT_ENABLED error. Topic.enable() may be called on an already enabled Topic [it will have no effect].

Reimplemented from Entity.

ReturnCode_t get_inconsistent_topic_status ( out InconsistentTopicStatus  status)
inline

Provides access to the InconsistentTopicStatus of the Topic. As a side-effect, this routine will reset the total_count_change status field to zero.

override InstanceHandle_t get_instance_handle ( )
inlinevirtual

Gets the handle that locally identifies this Entity.

Reimplemented from Entity.

TopicListener get_listener ( )
inline

This operation returns the currently installed TopicListener.

String get_name ( )
inline

This operation returns topic_name of the Topic.

Implements TopicDescription.

DomainParticipant get_participant ( )
inline

This operation returns the parent DomainParticipant of the Topic.

Implements TopicDescription.

ReturnCode_t get_qos ( TopicQos  qos)
inline

Returns the current TopicQos settings held in the Topic t. This routine copies the Topic QoS properites into qos.

String get_type_name ( )
inline

This operation returns type_name of the Topic.

Implements TopicDescription.

ReturnCode_t set_listener ( TopicListener  new_listener,
uint  mask 
)
inline

Installs a TopicListener on Topic t. Only one listener may be attached to a Topic at a time. A call to set_listener() will replace any current listener with a_listener.

a_listener can be NULL, which indicates a listener that does nothing.

The infrastructure will make an internal copy of the listener structure so that it need not be persisted by the application.

ReturnCode_t set_qos ( TopicQos  qos)
inline

Sets the TopicQos values. These QoS values affect the behavior of the Topic. This routine may fail if the provided qos argument is not internally consistent. In this case, ReturnCode_t.RETCODE_INCONSISTENT_POLICY will be returned, and no changes will be made to the Topic QoS.


© 2009-2017 Twin Oaks Computing, Inc
Castle Rock, CO 80108
All rights reserved.