Skip to content

Instantly share code, notes, and snippets.

@abhimuktheeswarar
Last active August 6, 2021 06:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhimuktheeswarar/515a11b950c3fdd4d6087a5725ae0f82 to your computer and use it in GitHub Desktop.
Save abhimuktheeswarar/515a11b950c3fdd4d6087a5725ae0f82 to your computer and use it in GitHub Desktop.
counterStateMachine for blog
fun CoroutineScope.counterStateMachine(
initialState: CounterState,
mutableStateFlow: MutableStateFlow<CounterState>,
mutableMessages: 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)
mutableMessages.emit(message)
}
is DecrementCounter -> {
state = state.copy(count = state.count - 1)
mutableStateFlow.emit(state)
mutableMessages.emit(message)
}
is GetCounterState -> message.deferred.complete(state)
}
}
}
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)
}
suspend fun getState(): CounterState {
val completableDeferred = CompletableDeferred<CounterState>()
dispatch(GetCounterState(completableDeferred))
return completableDeferred.await()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment