-
Notifications
You must be signed in to change notification settings - Fork 152
Port executor API from ROS2 #126
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
Comments
Would we be able to use some crates to help implement this solution (such as |
@jhdcs for now I'd just port the |
This is an issue where I feel there is a lot to learn for us about what a good design would be. For instance, if we tried to port the Async is tricky too. One observation is that it would probably be possible to make all things that can be waited on, like nodes, subscriptions, timers etc., instances of
I thought a |
I believe the wake implementation ends up being executor specific. |
We currently use simple
spin
functions to interact with waitsets and any waitable entities (subscriptions, clients, services, etc.), porting the executor API would help us implement more waitable entities (e.g. timers) and support running more than one node in a single program.The text was updated successfully, but these errors were encountered: