[Solved] How Retrofit library working faster than default AsyncTask? [closed]


Async task execute serially and are single threaded by default and they will wait for last call to complete before execution of next one and designed in a way so that to avoid common errors due to parallel running threads. Retrofit is not. It sends calls parallely and use ThreadPoolExecutor.

1

solved How Retrofit library working faster than default AsyncTask? [closed]