Last active
September 3, 2020 11:40
-
-
Save cmorigaki/8784367c8b4cf9574d6c8f8a158ad9ca to your computer and use it in GitHub Desktop.
Replace SingleLiveEvent with Channel - ViewModel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyViewModel : ViewModel() { | |
| protected val actionSender = BroadcastChannel<Action>(Channel.BUFFERED) | |
| val actionReceiver = actionSender.asFlow() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment