they’re not
# arrow
p
they’re not
d
@pakoito Hi, any possible consequences of
EmptyCoroutineContext
? Like lost MDC and any other ThreadLocal based state?
p
Yeah, it’s possible actually
if you want context preservation you have to pass and compose it explicitly
d
Ok, thank you for the explanation.
What about
IO.effect { xxx }
? It sets the context to
null
. Does it mean that it preserves current context?
p
IO.effect(context)
or
coroutineContext
while inside a suspend function