Created
December 22, 2021 16:50
-
-
Save fergusonm/572b510f3c39f8d62b1557a01e4ce52a to your computer and use it in GitHub Desktop.
Event emitter
This file contains 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
// In your view model | |
private val _eventChannel = Channel<Event>(Channel.BUFFERED) | |
val events = _eventChannel.receiveAsFlow() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment