LifecycleCoroutineScope's argument should be a CoroutineContext instead of MainImmediateCoroutineScope
Closed this issue · 0 comments
RBusarow commented
The library is able to construct its own MainImmediateContext
(SupervisorJob() + DefaultDispatcherProvider().let { it + it.mainImmediate }
), so there's no need to require a full MainImmediateCoroutineScope
argument. It is fine, though, to overload the constructor or factory so as to accept a CoroutineScope
as well.
By taking any sort of CoroutineScope
or CoroutineContext
, it's easy to inherit any additional Element
s while ensuring that the minimum requirements are there. So, for any CoroutineContext
argument, its Element
s will be re-used, except:
-
- If a
DispatcherProvider
element isn't present, aDefaultDispatcherProvider
will be added.
- If a
-
- If a
Job
element isn't present, aSupervisorJob
will be added.
- If a
-
- If the
ContinuationInterceptor
does not match the one referenced by the [possibly new]DispatcherProvider.mainImmediate
property, it will be updated to match.
- If the