You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
NanoTasks is meant to be extremely simple to use and leightweight. If you are looking for more features please have a look to RxJava or Bolt.
The onSuccess/onError callbacks won't be called if your context is null. No more NPE crashes because the Activity was destroyed (Although as some people pointed out this is not totally solved yet. I'm working on a better solution for the v2).
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
https://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.
About
Extremely light way to execute code in the background on Android. Alternative to AsyncTask.