Last active
August 29, 2015 14:03
-
-
Save maggandalf/09e63a7792dfc8db70fd to your computer and use it in GitHub Desktop.
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
public Observable<JsonArray> getComments(final String isbn) { | |
return Observable.create((Observable.OnSubscribe<JsonArray>) subscriber -> { | |
Runnable r = () -> { | |
subscriber.onNext(commentServiceTarget.path(isbn).request().get(JsonArray.class)); | |
subscriber.onCompleted(); | |
}; | |
executor.execute(r); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment