Extremely light way to execute code in the background on Android. Alternative to AsyncTask.
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.
Tasks.executeInBackground(context, new BackgroundWork() { @Override public Data doInBackground() throws Exception { return fetchData(); // expensive operation } }, new Completion() { @Override public void onSuccess(Context context, Data result) { display(result); } @Override public void onError(Context context, Exception e) { showError(e); } });
Gradle
groovy compile 'com.fabiendevos:nanotasks:1.1.0'Maven
xml com.fabiendevos nanotasks 1.1.0
You can also download it directly from Maven Central repo.
Fabien Devos - Twitter @fabien_devos - LinkedIn
NanoTask is licensed under the Apache 2 license (you can use it in commercial and open source projects).
Copyright 2015 Fabien DevosLicensed 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.