Merged
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the new UDPM (UDP Multicast) transport to the Goby middleware, enabling brokerless, peer-to-peer publish/subscribe messaging over UDP multicast. It also adds supporting documentation, refactors identifier management for interprocess communication, and provides minor improvements for Julia bindings and thread management. The most important changes are grouped below:
UDPM Transport Integration:
src/udpm/*.hin the build system (CMakeLists.txt,src/CMakeLists.txt) and linking its sources into the maingobylibrary. [1] [2] [3]src/doc/markdown/doc700_udpm.md.Identifier Management Refactor:
identifier.cpp/identifier.hto centralize and clarify the construction and parsing of interprocess message identifiers, including support for wildcards and proper delimiter handling. This improves consistency across transports. [1] [2]Middleware and Application Improvements:
MultiThreadApplicationBaseby usinggoby::time::SteadyClockfor polling with a fixed interval, improving timing accuracy and maintainability. [1] [2]Other Codebase Cleanups:
udp_one_to_many.hand made minor formatting and lambda improvements inintermodule.h. [1] [2] [3]