I have a question about the `invokeOnCompletion { ...
# coroutines
l
I have a question about the
invokeOnCompletion { ... }
. It runs regardless of the fact that the coroutine was cancelled or just completed successfully, right?
e
Right
More preceisely, it runs when this specific continuation completes for any reason (including cancellation)
l
Perfect!