Skip to content

Instantly share code, notes, and snippets.

@fkorotkov
Created May 12, 2020 23:05
Show Gist options
  • Save fkorotkov/5f63546b9e6d9022a25d996480d547a5 to your computer and use it in GitHub Desktop.
Save fkorotkov/5f63546b9e6d9022a25d996480d547a5 to your computer and use it in GitHub Desktop.
Loader code sample for a blog post
interface Loader<ID, T> {
suspend fun loadByIds(ids: Set<ID>): Map<ID, T>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment