Skip to content

Commit

Permalink
Merge pull request #32 from mauropasse/mauro/galactic-events-executor
Browse files Browse the repository at this point in the history
Take all available samples on service/client on_data_available. (ros2#616)
  • Loading branch information
alsora committed Jan 19, 2023
2 parents f2d26b2 + ab5af7d commit 1def746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ClientListener : public eprosima::fastdds::dds::DataReaderListener
data.is_cdr_buffer = true;
data.data = response.buffer_.get();
data.impl = nullptr; // not used when is_cdr_buffer is true
if (reader->take_next_sample(&data, &response.sample_info_) == ReturnCode_t::RETCODE_OK) {
while (reader->take_next_sample(&data, &response.sample_info_) == ReturnCode_t::RETCODE_OK) {
if (response.sample_info_.valid_data) {
response.sample_identity_ = response.sample_info_.related_sample_identity;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class ServiceListener : public eprosima::fastdds::dds::DataReaderListener
data.is_cdr_buffer = true;
data.data = request.buffer_;
data.impl = nullptr; // not used when is_cdr_buffer is true
if (reader->take_next_sample(&data, &request.sample_info_) == ReturnCode_t::RETCODE_OK) {
while (reader->take_next_sample(&data, &request.sample_info_) == ReturnCode_t::RETCODE_OK) {
if (request.sample_info_.valid_data) {
request.sample_identity_ = request.sample_info_.sample_identity;
// Use response subscriber guid (on related_sample_identity) when present.
Expand Down

0 comments on commit 1def746

Please sign in to comment.