Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong Data type referred in flow control example README #5315

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/cpp/flow_control/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ One of them will run the publisher example application, and the other will run t
Regardless of which application is run first, since the publisher will not start sending data until a subscriber is discovered, the expected output both for publishers and subscribers is a first displayed message acknowledging the match, followed by the amount of samples sent or received until Ctrl+C is pressed.
The samples are sent every 2s. The Slow DataWriter sends a sample before the Fast DataWriter, but the sample is always received later according with the FlowControllerQos settings in the Flow Controller.

### Hello world publisher
### Flow Control publisher

```shell
Publisher running. Please press Ctrl+C to stop the Publisher at any time.
Expand All @@ -92,7 +92,7 @@ Message SENT from FAST WRITER, count=3
...
```

### Hello world subscriber
### Flow Control subscriber

```shell
Subscriber running. Please press Ctrl+C to stop the Subscriber at any time.
Expand Down