Created
May 19, 2019 22:50
-
-
Save digitalbuddha/cab7f8f502414e302e00ddd0e65d45b4 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
interface Api { | |
@GET("r/{subredditName}/new/.json") | |
@RefershOnStale | |
@Persister | |
fun subRedditStore(@Path("subredditName") subredditName: String): RetroStore<RedditData> | |
} | |
fun getData() { | |
GlobalScope.launch { | |
val cachedData = api.subRedditStore("home").get() | |
val newData = api.subRedditStore("cats").fresh() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment