Last active
August 6, 2021 06:15
-
-
Save abhimuktheeswarar/515a11b950c3fdd4d6087a5725ae0f82 to your computer and use it in GitHub Desktop.
Revisions
-
abhimuktheeswarar revised this gist
Aug 6, 2021 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ fun CoroutineScope.counterStateMachine( initialState: CounterState, mutableStateFlow: MutableStateFlow<CounterState>, mutableMessages: MutableSharedFlow<CounterMessage>, ) = actor<CounterMessage> { var state: CounterState = initialState @@ -10,12 +10,12 @@ fun CoroutineScope.counterStateMachine( is IncrementCounter -> { state = state.copy(count = state.count + 1) mutableStateFlow.emit(state) mutableMessages.emit(message) } is DecrementCounter -> { state = state.copy(count = state.count - 1) mutableStateFlow.emit(state) mutableMessages.emit(message) } is GetCounterState -> message.deferred.complete(state) } @@ -26,12 +26,12 @@ fun CoroutineScope.counterStateMachine( class CounterStateStore(initialState: CounterState, val scope: CoroutineScope) { private val mutableStateFlow = MutableStateFlow<CounterState>(initialState) private val mutableMessages = MutableSharedFlow<CounterMessage>() private val stateMachine = scope.counterStateMachine(initialState, mutableStateFlow, mutableMessages) val stateFlow: Flow<CounterState> = mutableStateFlow val messagesFlow: Flow<CounterMessage> = mutableMessages fun dispatch(message: CounterMessage) { stateMachine.trySend(message) -
Abhi Muktheeswarar revised this gist
Aug 1, 2021 . 1 changed file with 24 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -20,4 +20,27 @@ fun CoroutineScope.counterStateMachine( is GetCounterState -> message.deferred.complete(state) } } } class CounterStateStore(initialState: CounterState, val scope: CoroutineScope) { private val mutableStateFlow = MutableStateFlow<CounterState>(initialState) private val mutableActions = MutableSharedFlow<CounterMessage>() private val stateMachine = scope.counterStateMachine(initialState, mutableStateFlow, mutableActions) val stateFlow: Flow<CounterState> = mutableStateFlow val actionsFlow: Flow<CounterMessage> = mutableActions fun dispatch(message: CounterMessage) { stateMachine.trySend(message) } suspend fun getState(): CounterState { val completableDeferred = CompletableDeferred<CounterState>() dispatch(GetCounterState(completableDeferred)) return completableDeferred.await() } } -
Abhi Muktheeswarar created this gist
Aug 1, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ fun CoroutineScope.counterStateMachine( initialState: CounterState, mutableStateFlow: MutableStateFlow<CounterState>, mutableActions: MutableSharedFlow<CounterMessage>, ) = actor<CounterMessage> { var state: CounterState = initialState channel.consumeEach { message -> when (message) { is IncrementCounter -> { state = state.copy(count = state.count + 1) mutableStateFlow.emit(state) mutableActions.emit(message) } is DecrementCounter -> { state = state.copy(count = state.count - 1) mutableStateFlow.emit(state) mutableActions.emit(message) } is GetCounterState -> message.deferred.complete(state) } } }