Skip to content

Instantly share code, notes, and snippets.

@GuilhE

GuilhE/Events.kt Secret

Last active February 5, 2022 20:05
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 GuilhE/3470628f3b4a6a83264a35645dd655f4 to your computer and use it in GitHub Desktop.
Save GuilhE/3470628f3b4a6a83264a35645dd655f4 to your computer and use it in GitHub Desktop.
Medium articles - MVI+FSM
sealed class Event {
object OnSetTimer : Event()
class OnTimerSet(val value: Int) : Event()
object OnStart : Event()
object OnFinish : Event()
object OnPause : Event()
object OnStop : Event()
object OnReset : Event()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment