Created
May 24, 2017 09:02
-
-
Save ZherebtsovAlexandr/1fdcb099ddced9d034618458c84596ba 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 interface RedditRepository { | |
Single<List<Reddit>> getPosts(String query, String restrict, String sort, String nsfw, int limit, String date); | |
Single<List<Reddit>> getPostsAfter(String query, String restrict, String sort, String nsfw, int limit, String date, String after); | |
Single<List<Reddit>> getHistory(); | |
Single<List<Reddit>> getHistoryAfter(int date); | |
Single<List<Reddit>> getFavorite(); | |
Single<List<Reddit>> getFavoriteAfter(int date); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment