Promises


Source link: https://github.com/onehilltech/promises

promises

Promise library for JVM and Android

  • Implements the Promises/A+ specification from JavaScript
  • Built using Java 1.7, but designed for Java 1.8
  • Supports Java Lambda expressions
  • Android module allows resolve/reject callbacks to run on UI thread

Installation

Gradle

buildscript {

repositories {

  maven {
 url "https://jitpack.io" 
}

}
 
}
  dependencies {

# for JVM-only projects
compile com.onehilltech.promises:promises-jvm:x.y.z

# for Android projects (includes JVM automatically)
compile com.onehilltech.promises:promises-android:x.y.z 
}
 

Java 1.8 on JVM

Just set the source and target compiler option to 1.8:

targetCompatibility = '1.8' sourceCompatibility = '1.8' 

Java 1.8 (Lambda expressions) on Android

Unless you are using Android Studio 3.0.0 or above, we recommend using Retrolambda to enable Java Lambda expressions on Java 1.7 or earlier. Add the following dependency to your top-level build.gradle script:

buildscript {

dependencies {

  classpath 'me.tatarka:gradle-retrolambda:x.y.z'

}
 
}
 

In build.gradle for each submodule wanting to use Java Lambda expressions with Promises, add the following to the top:

apply plugin: 'me.tatarka.retrolambda' 

Then, set the source and target to 1.8:

android {

  compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8

targetCompatibility JavaVersion.VERSION_1_8
  
}
 
}
 

Lastly, make sure you are using Android SDK build tools 26.0.0.

Quick Start

The simplest promise to create is one that is already resolved or rejected using Promise.resolve or Promise.reject, respectively.

// resolved promise Promise.resolve (5);
  // rejected promise Promise.reject (new IllegalStateException ("This is a rejected promise"));

You can also create a promise that is settled in the background. This is good when you need to perform some workload in the background, and notify the caller (or client) when the workload is resolved or rejected.

Promise <Foo> p = new Promise < > (settlement -> {

// settlement.resolve (foo);

// settlement.reject (ex);
 
}
);
 

In this case, you must either invoke settlement.resolve with the resolved value, or settlement.reject with an exception. Any uncaught exceptions will automatically reject the promise with the uncaught exception.

All promises are executed (or settled) when they are first created. To process a promise's settlement, use either then or _catch. It does not matter when you call then or _catch. If the promise is not settled, then the appropriate handler will be called after the promise is settled. If the promise is settled, then the appropriate handler will be called as soon as possible.

Important. All handlers are executed on a separate thread.

Promise.resolve (5)

  .then (n -> {

 // n == 5

 System.out.println ("Resolved value: " + n);

 return null;

  
}
);
  Promise.reject (new IllegalStateException ("This is a rejected promise"))

  ._catch (reason -> {

 // reason instanceof IllegalStateException

 reason.printStackTrace ();

 return null;

  
}
);

You may notice that the handlers return null in the example above. This is because the handler has the option of returning a Promise that to used to resolve the value for the next handler in the chain. If the handler does not return a Promise, then null is passed to the next handler.

Promise.resolve (5)

  .then (n -> {

 // n == 5

 System.out.println ("Resolved value: " + n);

 return Promise.resolve (10);

  
}
)

  .then (n -> {

 // n == 10

 System.out.println ("Resolved value: " + n);

 return null;

  
}
);

Not all handlers will return a Promise object. If you are in this situation, then you can use the ResolveNoReturn and RejectNoReturn helper classes, or resolved and rejected helper methods.

import static com.onehilltech.promises.Promise.resolved; import static com.onehilltech.promises.Promise.rejected;  // ...  Promise.resolve (5)

  .then (resolved (n -> {

 // n == 5

 System.out.println ("Resolved value: " + n);

  
}
))

  ._catch (rejected (reason -> reason.printStackTrace ()));

Chaining Promises

Promises can be chained to create a series of background workloads to be completed in step order. Just use then to chain a series of background workloads, and _catch to handle any rejection from the preceding promises.

Promise.resolve (5)

  .then (resolved (n -> {

 // n == 5

 System.out.println ("Resolved value: " + n);

  
}
))

  .then (resolved (value -> {

 // value == null

 System.out.println ("Resolved value: " + value);

  
}
))

  ._catch (rejected (reason -> {
 
}
))

  .then (this::doSomethingElse)

  ._catch (Promise.ignoreReason);

In the example above, we must point our several things. First, execution continues after the first _catch if any of the preceding promises is rejected. If none of the promises are rejected, then the first _catch is skipped. Second, we are using Java method references (i.e., this::doSomethingElse), which improves the readability of the code, and reduces verbosity. Lastly, Promise.ignoreReason is a special handler that will catch the rejection and ignore the reason. This way, you do not have to write a bunch of empty handlers like the first _catch.

Promise.all

The library implements Promise.all, which is resolved if all promises are resolved and rejected if any of the promises is rejected.

Promise.race

The library implements Promise.race, which is settled when the first promise is either resolved or rejected.

Android Support

Running on the UI Thread

All promises are settled on a background thread, and the handlers are called on a background thread. If you attempt to update the UI in the handler, then the Android framework will throw an exception. This is because you are updating the UI on a different thread than the one that create the UI elements (i.e., the main thread). To address the need for updating the UI in the handler methods, the Android module provides onUiThread helper methods for running a handler on the UI thread.

import static com.onehilltech.promises.Promise.resolved; import static com.onehilltech.promises.Promise.rejected; import static com.onehilltech.promises.RejectedOnUIThread.onUiThread; import static com.onehilltech.promises.ResolvedOnUIThread.onUiThread;  // ...  Promise.resolve ("Hello, World!")

  .then (onUiThread (resolved (str -> {

 // Update the UI component

 this.label.setText (str);

  
}
)))

  ._catch (onUiThread (rejected (reason -> reason.printStackTrace ())));

Happy Coding!

Resources

It's just an example of material transition.

A contextual actionbar library with many customization options.

An extended transition for android ViewPager.

Animate is a simple application to demonstrate meaningful motion on Android. This application takes a look at a bunch of different Material Style animations.

Power your app's data links with named entity recognition and disambiguation.

This project makes it easy to convert an installed Android app that was built with the Android SDK into readable source files.

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