Skip to content

Instantly share code, notes, and snippets.

@makorowy
Last active October 18, 2020 09:49
Show Gist options
  • Save makorowy/adb6f3b40d2540626927b19a4e672637 to your computer and use it in GitHub Desktop.
Save makorowy/adb6f3b40d2540626927b19a4e672637 to your computer and use it in GitHub Desktop.
Example of not handling interactions via ViewModel, part 3
object RepositoryData
class Repository {
fun observeChanges(observer: (RepositoryData) -> Unit) {
//some logic
observer.invoke(RepositoryData)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment