-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
-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