OnStateEvent
On State Event.
Local Context:
@OnStateEvent
fun onStateEvent(changed: Changed, state: State) {
//...
}
Content copied to clipboard
Remote Context:
@OnStateEvent
fun onStateEvent(changed: Changed, stateRecord: StateRecord) {
val state = stateRecord.toObject<StateData>()
//...
}
Content copied to clipboard
Author
ahoo wang