Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:41
Show Gist options
  • Save larkintuckerllc/a556806921f2e19269c5de576ef9348a to your computer and use it in GitHub Desktop.
Save larkintuckerllc/a556806921f2e19269c5de576ef9348a to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 6
...
mTodosViewModel.todos.observe(this, (todos -> {
DiffUtil.DiffResult result = DiffUtil.calculateDiff(new DiffUtil.Callback() {
...
});
result.dispatchUpdatesTo(todosAdapter);
mTodos = todos;
}));
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment