Replies: 1 comment 3 replies
-
Hello @colazzo
Each task will create a D-Bus message that will be sent to the D-Bus daemon. D-Bus daemon will when distribute those messages to the address you are calling. I don't think the message delivery order can be reliable.
Is your server also using python-sdbus? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have a question regarding async calls.
From my dbus client which uses asyncio:
What happens exactly if I have several asyncio task launched after each other calling the same async method on the dbus proxy from the Client?
Is there a concurrency check to be done on the dbus Server side,
or are the received calls being executed one by one on the main thread of the Server?
Beta Was this translation helpful? Give feedback.
All reactions