RxJava Pagination
问题 I am fairly new to rxJava. in my api response, I get information about total number of pages and current page number like: "pages": 22, "page": 1, i am using Retrofit to do api calls in data layer, my api service is like: @GET("/story") Observable <StoryCollectionEntity> storyCollection( @Query("feed_ids") String feed_items, @Query("page") int page); then: public Observable<StoryCollectionEntity> storyCollection() { return mUserApi.storyCollection(items,page); } i did the subscription in