Skip to content

Instantly share code, notes, and snippets.

@digitalbuddha
Created May 19, 2019 22:50
Show Gist options
  • Save digitalbuddha/cab7f8f502414e302e00ddd0e65d45b4 to your computer and use it in GitHub Desktop.
Save digitalbuddha/cab7f8f502414e302e00ddd0e65d45b4 to your computer and use it in GitHub Desktop.
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