I write app on Java. In my app I have many AsyncTasks with JSOUP inside. But AsyncTask is deprecated, so I found a lot of variants for change:
- Volley
- RxJava
- Threads
- Executers
- Coroutines
I want to ask what is the best choice for JSOUP instead of AsyncTask?