kotlin-coroutines-retrofit icon indicating copy to clipboard operation
kotlin-coroutines-retrofit copied to clipboard

Kotlin Coroutines await() extension for Retrofit Call

Results 2 kotlin-coroutines-retrofit issues
Sort by recently updated
recently updated
newest added

hey gildor, smart work :) Do you plan to support "Async stack recording" to see the origin caller in case of an exception within retrofit? Similar as you did in...

Hi, I am trying to use this library .Here is my code :- ``` @GET(ApiEndPoint.API_MODELS) Call getCarModelsAsync2(@Query("itemsPerPage") String itemsPerPage); ``` ``` fun getModelData() = runBlocking { try { // Wait...