KeyedFetcher

fun interface KeyedFetcher<K : Any, T : Any>

Fetches data from a server. Throws exception on error.

Parameters

K

key type

T

data type

Functions

Link copied to clipboard
abstract suspend fun fetch(key: K): T