Source link: https://bitbucket.org/hal/android-async
This is a small library to help with running long running tasks without blocking the thread they're started on. Callbacks are made on completion. The role it fills is similar to AsyncTask, except more flexible, and nicer to use.
Standard Java concurrency tools like Futures
, Executors
, Callables
, etc are used.