Tasker


Source link: https://github.com/kevindmoore/tasker

Tasker

This library helps with sequential tasks that will be run one after another and only when each task is finished. These tasks can either be UI or background.

Downloading

Gradle compile 'com.mastertechsoftware.tasker:taskerlibrary:1.0.9' 

Android Java Example

  Tasker.create().
  // Check for google Play services
  addUITask(new DefaultTask() {

@Override

public Object run() {

 acquireGooglePlayServices();

 return null;

}

  
}
)
  .withCondition(new Condition() {

@Override

public boolean shouldExecute() {

 return !isGooglePlayServicesAvailable();

}

  
}
)
  // Check to see if we have permissions
  .addUITask(new DefaultTask() {

 @Override

public Object run() {

 String accountName = getPreferences(Context.MODE_PRIVATE)

.getString(PREF_ACCOUNT_NAME, null);

 if (accountName != null) {

  mCredential.setSelectedAccountName(accountName);

 
}
 else {

  startAccountChooser();

  currentDefaultTaskHandler = this;

  setPaused(true);

 
}

 return null;

}

  
}
)
  .withCondition(new Condition() {

@Override

public boolean shouldExecute() {

 return EasyPermissions.hasPermissions(

MainActivity.this, Manifest.permission.GET_ACCOUNTS);

}

  
}
)
  .addTask(new DefaultTask() {

@Override

public Object run() {

 signIn();

 setShouldContinue(false);

 return null;

}

  
}
)
  .addFinisher(new TaskFinisher() {

@Override

void finished(List<Exception> errors) {

 Logger.debug("Finished");

 
}

  
}
)
  .run();

 @Override  protected void onActivityResult(
 int requestCode, int resultCode, Intent data) {

super.onActivityResult(requestCode, resultCode, data);

switch(requestCode) {

 case REQUEST_GOOGLE_PLAY_SERVICES:
  if (resultCode == RESULT_OK) {

if (currentDefaultTaskHandler != null) {

 currentDefaultTaskHandler.setPaused(false);

 currentDefaultTaskHandler = null;

}

  
}

}
  
}

##Kotlin Example



  Tasker.create()

  .addTask {

 // Background Task

}

  .addUITask{
 task ->

// UI Task

  
}

  .run() 

Important Concepts

To start, just use Tasker.create(). This is in the builder format where calls can be chained together.

To run a UI Task call addUITask(Task). A DefaultTask class is provided so you can just override the run method. To add a background task call addTask. All tasks run in order so that even with background tasks, the next task won't run until that one is done.

Conditions

If you want a task to only run when a certain condition is met, add a Condition class in withCondition. This will return true to run or false to skip.

Stopping/Pausing

To stop processing, just call setShouldContinue(false);

To pause a UI Task to wait for user input, call setPaused(true). When ready, call setPaused(false). In our example, I have a variable named currentDefaultTaskHandler that I set so the rest of the code knows which task to unpause.

To handle things when all tasks are done (either with a successful or error state), add a TaskFinisher to the end. (actually it can be anywhere)

Possible Issues

The second task runs right after the first: This may happen if your first task which is run on a background thread calls another API that also runs in the background. In this case you need to tell the task to pause until the API returns.

 Tasker.create().addTask {
 Task ->
 task.setPaused(true)
ApiCall.doSomeLongRunningTask( object: callback {

 override fun callbackmethod() {

  task.setPaused(false)
 
}

}
)
.addUITask {

}

.withCondition {

 <condition check>

}
  .run() 

License

Copyright 2016 Master Tech Software.

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.

Resources

Add a circular progress bar to any existing fab.

Android Contats API.

Powerful (Zoom, Rotation, Multi-Source), customizable (Shape, Limits, Style), optimized (Async, Sampling, Matrix) and simple image cropping library for Android.

RoboAspectJ is a Gradle plugin to introduce AspectJ (Aspect-Orient Programming) to Android project. It compiles aspects(if needed) and weave them all together in FULL-PROJECT scope. This means project (or subproject) sources, external libraries and local dependencies will all be dealt with by default.

Lightweight thrift client code generator and runtime library for Android and Java.

ListView with a sticky header.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes