Home

Awesome

NanoTasks

NanoTasks is an extremely light way to execute code in the background on Android. It is a wrapper arround AsyncTask that provides a simpler to use and more flexible API.

Notes

Usage

Tasks.executeInBackground(context, new BackgroundWork<Data>() {
    @Override
    public Data doInBackground() throws Exception {
        return fetchData(); // expensive operation
    }
}, new Completion<Data>() {
    @Override
    public void onSuccess(Context context, Data result) {
        display(result);
    }
    @Override
    public void onError(Context context, Exception e) {
        showError(e);
    }
});

Dependency

Gradle

compile 'com.fabiendevos:nanotasks:1.1.0'

Maven

<dependency>
  <groupId>com.fabiendevos</groupId>
  <artifactId>nanotasks</artifactId>
  <version>1.1.0</version>
</dependency>

You can also download it directly from Maven Central repo.

Author

Fabien Devos

License

NanoTask is licensed under the Apache 2 license (you can use it in commercial and open source projects).

Copyright 2015 Fabien Devos

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.