Does `launch` require a corresponding `join` or wi...
# coroutines
b
Does
launch
require a corresponding
join
or will the coroutine resources created with
launch
be automatically reclaimed on coroutine completion?
e
Not required.
launch
is for “fire and forget”
b
perfect. Thanks!