Skip to content

Instantly share code, notes, and snippets.

@maggandalf
Last active August 29, 2015 14:03
Show Gist options
  • Save maggandalf/09e63a7792dfc8db70fd to your computer and use it in GitHub Desktop.
Save maggandalf/09e63a7792dfc8db70fd to your computer and use it in GitHub Desktop.
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