Created
April 14, 2017 15:24
-
-
Save benigumocom/a292c880cadf4723c700ba2cc8bf48e1 to your computer and use it in GitHub Desktop.
Being Reactive 2
This file contains hidden or 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
interface UserManager { | |
Observable<User> getUser(); | |
Completable setName(String name); | |
Completable setAge(int age); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment