Created
October 6, 2019 01:56
-
-
Save enginebai/b7013dda9f8701a315730e5d33eacf22 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
interface AlbumRepo { | |
fun fetchAlbums(setting: AlbumSetting? = null): Completable | |
fun getAlbums(setting: AlbumSetting? = null): BehaviorSubject<List<AlbumItem>> | |
fun getAlbumItem(name: String, setting: AlbumSetting? = null): Observable<AlbumItem> | |
fun getAlbumItemSync(name: String, settings: AlbumSetting? = null): AlbumItem? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment