Skip to content

Instantly share code, notes, and snippets.

@vodamiro
Created April 11, 2019 13:54
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 vodamiro/5631f9e07faf8631347b15c4e1cfb855 to your computer and use it in GitHub Desktop.
Save vodamiro/5631f9e07faf8631347b15c4e1cfb855 to your computer and use it in GitHub Desktop.
S_A_SealedClasses.kt
sealed class UIState
object LoadingState : UIState() // Data is being loaded
class DataState(val data: Data) : UIState() // Data loaded successfully
class ErrorState(val error: Throwable) : UIState() // In case of failure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment