Created
November 4, 2016 22:35
-
-
Save aballano/3340560c6ee0826abc2d890ff8f26ee2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void onDeleteChatAt(int id) { | |
interactor.deleteChat(id) | |
.retryWhen(errors -> 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