Replies: 1 comment 1 reply
-
Your logical concerns are probably valid. However, we no longer maintain or recommend using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been working with the rmf_demos_panel package for sometime now and I have a few questions regarding the
AsyncRmfMsgObserver
class and its methods, specifically the__check_future
and__internal_spin
functions.Is there any particular reason why an asyncio event loop is not being used to create the task?
It would probably eliminate the need to continuously check the future in a separate while loop and setting the future to done would simultaneously terminate the event loop and the websocket server.
Another question pertaining to the same package, why is there a separate
spin_thread
created insimple_api_server.py
that doesn't seem to be doing anything other then sleep every 0.2s?Beta Was this translation helpful? Give feedback.
All reactions