Skip to content

Instantly share code, notes, and snippets.

@aballano
Created November 4, 2016 22:36
Show Gist options
  • Save aballano/aa68301094d148b02a42df5221a10d06 to your computer and use it in GitHub Desktop.
Save aballano/aa68301094d148b02a42df5221a10d06 to your computer and use it in GitHub Desktop.
public void onDeleteChatAt(int id) {
interactor.deleteChat(id)
.retryWhen(errors -> errors.flatMap(error -> view.showDeleteFailedWithRetry()))
.subscribe(() -> view.removeChat(id), logError())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment