Skip to content

Instantly share code, notes, and snippets.

@piotrbernad
Created September 27, 2017 18:14
Show Gist options
  • Save piotrbernad/be1a25a8ae09495af87fa2e2dbdc32df to your computer and use it in GitHub Desktop.
Save piotrbernad/be1a25a8ae09495af87fa2e2dbdc32df to your computer and use it in GitHub Desktop.
LoadableState
public enum LoadableState<ItemType> {
case idle
case loading
case loaded(items: [ItemType])
case contentUnavailable
case refreshing
case error(error: Error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment