-
I wondering if 'signal send' blocks current execution, for example I send signal for some action 'signal handler' handle and do some actions, does this action is fire and forget? |
Beta Was this translation helpful? Give feedback.
Answered by
pawamoy
Jul 5, 2023
Replies: 1 comment
-
Yes. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
davidism
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes.
your_signal.send(...)
returns a list of tuples: the receivers and their return value (if any).