gildor / kotlin-coroutines-retrofit

Kotlin Coroutines await() extension for Retrofit Call
Apache License 2.0
847 stars 64 forks source link

updated parallel requests #51

Closed kelvin2468 closed 5 years ago

kelvin2468 commented 5 years ago

-Sometimes you want to run a few requests in parallel and don't want to wait for the previous request to make the next one. You can do that by wrapping calls with kotlinx.coroutines async() Revision: By wrapping call with kotlinx.coroutines async(), you may run a few requests parallelly without waiting for the previous request. updated #50