Skip to content

Instantly share code, notes, and snippets.

@fkorotkov
Created May 8, 2020 23:23
Show Gist options
  • Save fkorotkov/f9a278375b80e18b393fce0d0e477283 to your computer and use it in GitHub Desktop.
Save fkorotkov/f9a278375b80e18b393fce0d0e477283 to your computer and use it in GitHub Desktop.
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