Exceptions that happen inside a callback used insi...
# coroutines
f
Exceptions that happen inside a callback used inside a
callbackFlow
can not be caught with the
catch
operator?
a
They can if the
callbackFlow
catches them and `close()`s the channel with the exception
But since no part of the flow machinery is involved in dispatching the callback, it can't do it automatically
f
Is this the right way to do it?
I'm trying that but these errors don't end up in my catch operator
nevermind, I think I have it figured out now
it's pretty late and my brain is mush now