Replies: 1 comment 2 replies
-
My understanding about how the whole dispatcher thing is it dumps everything into a queue. Which then is executed in order by a different thread. However because the queue is globally accessible from any thread there is nothing stopping something else from getting in between your calls. Also the dispatcher has a priority system which determines the order things are executed in. Higher priority things are executed before lower priority ones. You can specify the priority yourself using one of the overloads. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's say:
Does the output have to be this:
Actually it is but I don't know if it's a definite behavior.
Beta Was this translation helpful? Give feedback.
All reactions