Is it possible to transform from SharedFlow<typeA> to SharedFlow<typeB> without introducing a new scope? A standard transform() converts it to a Flow<typeB>
j
julian
04/07/2022, 9:07 PM
Could you
shareIn
the
Flow<B>
, but provide as its parameter the same scope used to create
SharedFlow<A>
?
m
Michael Marshall
04/08/2022, 1:30 AM
there have been some issues raised about similar ideas before, but unfortunately most