RTI Connext .NET API (legacy)  Version 6.1.0
DDS::PublishModeQosPolicy Class Reference

Specifies how RTI Connext sends application data on the network. This QoS policy can be used to tell RTI Connext to use its own thread to send data, instead of the user thread. More...

#include <managed_infrastructure.h>

Static Public Member Functions

static System::String ^ get_publishmode_qos_policy_name ()
 Stringified human-readable name for DDS::PublishModeQosPolicy. More...
 

Public Attributes

PublishModeQosPolicyKind kind
 Publishing mode. More...
 
System::String ^ flow_controller_name
 Name of the associated flow controller. More...
 
System::Int32 priority
 Publication priority. More...
 

Detailed Description

Specifies how RTI Connext sends application data on the network. This QoS policy can be used to tell RTI Connext to use its own thread to send data, instead of the user thread.

The publishing mode of a DDS::DataWriter determines whether data is written synchronously in the context of the user thread when calling DDS::TypedDataWriter::write or asynchronously in the context of a separate thread internal to the middleware.

Each DDS::Publisher spawns a single asynchronous publishing thread (DDS::AsynchronousPublisherQosPolicy::thread) to serve all its asynchronous DDS::DataWriter instances.

See also
DDS::AsynchronousPublisherQosPolicy
DDS::HistoryQosPolicy
DDS::FlowController
Entity:
DDS::DataWriter
Properties:
RxO = N/A
Changeable = NO

Usage

The fastest way for RTI Connext to send data is for the user thread to execute the middleware code that actually sends the data itself. However, there are times when user applications may need or want an internal middleware thread to send the data instead. For instance, to send large data reliably, you must use an asynchronous thread.

When data is written asynchronously, a DDS::FlowController, identified by flow_controller_name, can be used to shape the network traffic. Shaping a data flow usually means limiting the maximum data rates at which the middleware will send data for a DDS::DataWriter. The flow controller will buffer any excess data and only send it when the send rate drops below the maximum rate. The flow controller's properties determine when the asynchronous publishing thread is allowed to send data and how much.

Asynchronous publishing may increase latency, but offers the following advantages:

- The DDS::TypedDataWriter::write call does not make any network calls and is therefore faster and more deterministic. This becomes important when the user thread is executing time-critical code.

- When data is written in bursts or when sending large data types as multiple fragments, a flow controller can throttle the send rate of the asynchronous publishing thread to avoid flooding the network.

- Asynchronously written samples for the same destination will be coalesced into a single network packet which reduces bandwidth consumption.

The maximum number of samples that will be coalesced depends on "<TRANSPORT_PREFIX>.parent.gather_send_buffer_count_max" (each sample requires at least 2-4 gather-send buffers). Performance can be improved by increasing "<TRANSPORT_PREFIX>.parent.gather_send_buffer_count_max". Note that the maximum value is operating system dependent.

The middleware must queue samples until they can be sent by the asynchronous publishing thread (as determined by the corresponding DDS::FlowController). The number of samples that will be queued is determined by the DDS::HistoryQosPolicy. When using KEEP_LAST_HISTORY_QOS, only the most recent DDS::HistoryQosPolicy::depth samples are kept in the queue. Once unsent samples are removed from the queue, they are no longer available to the asynchronous publishing thread and will therefore never be sent.

Member Data Documentation

◆ kind

PublishModeQosPolicyKind DDS::PublishModeQosPolicy::kind

Publishing mode.

[default] SYNCHRONOUS_PUBLISH_MODE_QOS

◆ flow_controller_name

System::String ^ DDS::PublishModeQosPolicy::flow_controller_name

◆ priority

System::Int32 DDS::PublishModeQosPolicy::priority

Publication priority.

A positive integer value designating the relative priority of the DDS::DataWriter, used to determine the transmission order of pending writes.

Use of publication priorities requires the asynchronous publisher (ASYNCHRONOUS_PUBLISH_MODE_QOS) with DDS::FlowControllerProperty_t::scheduling_policy set to DDS_HPF_FLOW_CONTROLLER_SCHED_POLICY.

Larger numbers have higher priority.

For multi-channel DataWriters, if the publication priority of any channel is set to any value other than DDS::PublicationPriority::UNDEFINED, then the channel's priority will take precedence over that of the DataWriter.

For multi-channel DataWriters, if the publication priority of any channel is DDS::PublicationPriority::UNDEFINED, then the channel will inherit the publication priority of the DataWriter.

If the publicaton priority of the DataWriter, and of any channel of a multi-channel DataWriter, are DDS::PublicationPriority::UNDEFINED, then the priority of the DataWriter or DataWriter channel will be assigned the lowest priority value.

If the publication priority of the DataWriter is DDS::PublicationPriority::AUTOMATIC, then the DataWriter will be assigned the priority of the largest publication priority of all samples in the DataWriter.

The publication priority of each sample can be set in the DDS::WriteParams_t of the DDS::TypedDataWriter::write_w_params function.

For dispose and unregister samples, use the DDS::WriteParams_t of DDS::TypedDataWriter::dispose_w_params and DDS::TypedDataWriter::unregister_instance_w_params.

[default] DDS::PublicationPriority::UNDEFINED