Skip to content

Commit 39a4239

Browse files
Refs #21745. Piggyback: minor update to DDS-Record-Replay tutorial
Signed-off-by: Juan Lopez Fernandez <[email protected]>
1 parent 573e504 commit 39a4239

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

code/DDSCodeTester.cpp

-22
Original file line numberDiff line numberDiff line change
@@ -7739,28 +7739,6 @@ bool dds_permissions_test(
77397739
return false;
77407740
}
77417741

7742-
bool dds_rosbag_example()
7743-
{
7744-
//CREATE THE PARTICIPANT
7745-
DomainParticipant* participant_;
7746-
Topic* topic_;
7747-
TypeSupport type_;
7748-
7749-
participant_ = DomainParticipantFactory::get_instance()->create_participant(0, PARTICIPANT_QOS_DEFAULT);
7750-
7751-
//CREATE THE TOPIC FOR ROSBAG
7752-
topic_ = participant_->create_topic(
7753-
"rt/HelloWorldTopic",
7754-
type_.get_type_name(),
7755-
TOPIC_QOS_DEFAULT);
7756-
if (topic_ == nullptr)
7757-
{
7758-
return false;
7759-
}
7760-
//!
7761-
return true;
7762-
}
7763-
77647742
void pubsub_api_example_create_entities()
77657743
{
77667744
//PUBSUB_API_CREATE_PARTICIPANT

docs/fastdds/use_cases/dds_record_and_replay/dds_record_and_replay.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ Stop the recorder with ``Ctrl+C`` and check that the MCAP file exists.
9494
Next Steps
9595
==========
9696

97-
The usage of the DDS Remote Controller and DDS Replay tools follows
98-
the same steps as the DDS Recorder tool.
97+
Once having finished a recording session, it is possible to play it back by using **DDS Replay tool**, as shown
98+
in `this tutorial <https://dds-recorder.readthedocs.io/en/latest/rst/replaying/getting_started/usage_example.html>`_.
9999

100100
For further information, please refer to the
101101
`eProsima DDS Record and Replay documentation

docs/fastdds/use_cases/use_cases.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ with distributed systems:
9090
and how to take full advantage of *Fast DDS* wide set of capabilities in a ROS 2 project.
9191

9292
+ :ref:`dds_record_and_replay`.
93-
Instructions on how to tune your application to be able to record and replay your DDS messages using ROS 2 rosbag2
94-
package.
93+
Instructions on how to tune your application to be able to record and replay your DDS messages using
94+
`eProsima DDS Record and Replay <https://github.com/eProsima/DDS-Record-Replay>`_.
9595

9696
+ :ref:`use-case-request-reply`.
9797
Although *Fast DDS* provides a *Publisher-Subscriber* communication protocol, it offers a mechanism to use

0 commit comments

Comments
 (0)