Skip to content

Instantly share code, notes, and snippets.

@shkschneider
Last active November 27, 2018 09:30
Show Gist options
  • Save shkschneider/5e0088376d16a74d574b735787955764 to your computer and use it in GitHub Desktop.
Save shkschneider/5e0088376d16a74d574b735787955764 to your computer and use it in GitHub Desktop.
@UiThread
fun getUsers(context: Context): LiveData<List<User>> {
if (!::users.isInitialized) {
users = MutableLiveData()
Coroutines.ioThenMain({
DataManager.getUsers(context)
}) {
users.value = it
}
}
return users
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment