Skip to content

Commit 4aa0b00

Browse files
PR feedback
1 parent 4ee68a3 commit 4aa0b00

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

1_before_start/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Getting Started with RTI Connext DDS
22

33
This repository accompanies the text in the
4-
[RTI Connext DDS Getting Started Guide](https://community.rti.com/static/documentation/connext-dds/6.1.0/doc/manuals/connext_dds/getting_started/index.html).
4+
[RTI Connext DDS Getting Started Guide](https://community.rti.com/static/documentation/connext-dds/6.1.0/doc/manuals/connext_dds_professional/getting_started_guide/index.html).
55

66
The first chapter of the Getting Started Guide reviews how to install RTI
77
Connext DDS, and how to set up a license if needed.

4_keys_instances/csharp/MonitoringCtrlApplication/MonitoringCtrlApplication.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ private void RunExample(
126126

127127
// Exercise #4.3: Add the new DataReader's StatusCondition to the Waitset
128128

129+
// Start publishing in a separate thread
129130
var startLotTask = Task.Run(() => PublishStartLot(lotStateWriter, lotsToProcess));
130131

131132
while(!shutdownRequested && lotsProcessed < lotsToProcess)

5_basic_qos/csharp/MonitoringCtrlApplication/MonitoringCtrlApplication.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ private void RunExample(
160160
// Add the new DataReader's StatusCondition to the Waitset
161161
waitset.AttachCondition(temperatureStatusCondition);
162162

163+
// Start publishing in a separate thread
163164
var startLotTask = Task.Run(() => PublishStartLot(lotStateWriter, lotsToProcess));
164165

165166
while(!shutdownRequested && lotsProcessed < lotsToProcess)

6_content_filters/csharp/MonitoringCtrlApplication/MonitoringCtrlApplication.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ private void RunExample(
173173
// Add the new DataReader's StatusCondition to the Waitset
174174
waitset.AttachCondition(temperatureStatusCondition);
175175

176+
// Start publishing in a separate thread
176177
var startLotTask = Task.Run(() => PublishStartLot(lotStateWriter, lotsToProcess));
177178

178179
while(!shutdownRequested && lotsProcessed < lotsToProcess)

0 commit comments

Comments
 (0)