Closed gnarea closed 1 year ago
The main change is converting
BroadcastChannel.asFlow()
toMutableSharedFlow.asSharedFlow()
, which I'm not entirely sure I'm doing correctly (it feels odd to have to callasSharedFlow()
on a subclass ofSharedFlow
).
Yup, you did the correct change, and have MutableSharedFlow with the right arguments.
With MutableStateFlow
we call asStateFlow
to get an immutable StateFlow
, and with MutableSharedFlow
we call asSharedFlow
to get an immutable SharedFlow
.
Obrigado! 🙏🏾
:tada: This PR is included in version 1.4.0 :tada:
The release is available on:
v1.4.0
Your semantic-release bot :package::rocket:
The main change is converting
BroadcastChannel.asFlow()
toMutableSharedFlow.asSharedFlow()
, which I'm not entirely sure I'm doing correctly (it feels odd to have to callasSharedFlow()
on a subclass ofSharedFlow
).