Package com.skydoves.sandwich.datasource
Types
Functions
Link copied to clipboard
inline fun <T> Call<T>.combineDataSource(dataSource: DataSource<T>, crossinline onResult: (response: ApiResponse<T>) -> Unit): DataSource<T>
Content copied to clipboard
Link copied to clipboard
inline fun <T> Call<T>.suspendCombineDataSource( dataSource: DataSource<T>, context: CoroutineContext = EmptyCoroutineContext, crossinline onResult: suspend (response: ApiResponse<T>) -> Unit): DataSource<T>
Content copied to clipboard
inline fun <T> Call<T>.suspendCombineDataSource( dataSource: DataSource<T>, coroutineScope: CoroutineScope, crossinline onResult: suspend (response: ApiResponse<T>) -> Unit): DataSource<T>
Content copied to clipboard
Link copied to clipboard