Examples

An extensive repository of code examples on how to use specific RTI Connext DDS features is available on GitHub. Browse and download the most up-to-date examples on the RTI Community GitHub examples repository, where you can find building instructions for every example.

You may browse and contribute enhancements or additional examples directly on GitHub.

Note: The following is a partial list of examples; explore the GitHub repository for the most up-to-date example list.

Browse Examples

Sometimes, you may want a set of data for the same DataWriter to be presented to the receiving DataReader only after ALL the elements of the set have been received. In this example we illustrate how to use Group access_scope for the order in which samples are presented to the subscribing application.
10109 reads — 2 comments
This is a simple example that shows how to receive notifications about data becoming available using a Query Condition. QueryConditions use the same SQL-based filtering syntax as ContentFilteredTopics for query expressions, parameters, etc. Unlike ContentFilteredTopics, QueryConditions are applied to data already received, so they do not affect the reception of data.
9628 reads — 0 comments
A Content Filtered Topic is a Topic with filtering properties. It makes it possible to subscribe to topics and at the same time specify that you are only interested in a subset of the Topic's data. This example explains how to use the built-in StringMatch filter that can be used with ContentFilteredTopics.
19409 reads — 3 comments
This example illustrates how to use coherency QoS to force writes to be grouped on the receiving side. Suppose the reader is tracking the state of an object with many fields. If changes to fields occur relatively infrequently, it is inefficient to send the entire state on every update. Instead, we send an ID for the object, an ID for the field to be updated, and the new value.
8188 reads — 0 comments
Batching can be used to decrease the amount of communication overhead associated with the transmission and acknowledgement of small samples, in order to increase throughput. In this example we explain how to use the batching QoS setting as well as "Turbo Mode", an experimental feature that adjusts automatically the number of bytes in a batch.
8502 reads — 0 comments
This example illustrates the three different approaches RTI Connext DDS implements to store data persistently. That is, Durable Write History, Durable Reader State, and Persistence Service.
11161 reads — 0 comments
Unlike Content Filter Topics, Custom Content Filters allow the use of non-relational operations between topic members, i.e. a computation involving topic members. In this example we create a Custom Content Filter takes an expression "%0 %1 x", where %0 is an integer, %1 is "divides" or "greater-than", and the "x" is the field we are comparing in the sample. The filter lets samples through if the parameter[0] divides or is greater than x, respectively.
9249 reads — 0 comments

Pages