ActionChain


Source link: https://github.com/lemnik/actionchain

ActionChain

ActionChain makes bouncing between the main thread and background threads much:

  • Easier
  • Cleaner
  • Safer
  • More easily tested

and allows for much more code-reuse. It may help you in other ways, in which case: please share!

Usage

Add to your project dependencies:

compile 'com.lemnik:action-chain:0.1.1' 

ActionCommand with lambda's can be used exactly like this:

import static com.lemnik.actionchain.ActionCommand.onBackground; import static com.lemnik.actionchain.ActionCommand.onForeground;  // ...  onBackground((name) -> "Hello <b>" + name + "</b>") .then(onBackground((msg) -> Html.fromHtml(msg))) .then(onForeground((msg) -> {

  Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
 
}
)) .exec("Jason");
 

You can also capture an Action chain to be executed later:

private final ActionCommand.Chain<User, User> saveUser =
  new SaveLocalUserCommand()
  .then(new UploadUserCommand())
  .then(onForeground((user) -> {

setUser(user);

  
}
);
 

Thread-hopping Chain-of-Command

Action chains follow something like the chain-of-commands pattern (also known as chain-of-responsibility). In this case however:

  • Aach command ( ActionCommand) has a function that runs on a "background" thread (typically stolen from AsyncTask under the hood).
  • The background function takes an input open (optionally) and produces an output object
  • The output object is handed to a foreground consumer that runs on the main thread
  • The output object is passed as the input for the next ActionCommand in the chain

Exceptions cause the entire chain to go into an error state, which by-default is a "pass forward" behaviour Errors are always handled on the main thread, so it's something you can simply attach to the end of your chain:

onBackground((name) -> "Hello <b>" + name + "</b>") .then(onBackground((msg) -> Html.fromHtml(msg))) .then(onForeground((msg) -> {

  Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
 
}
)) .then(onError(exception) -> {

  handleError(exception);
 
}
);
 

Usage Patterns

In case you don't have Java 8 (or lambdas of some other form) enabled for your Android project, Action chains can be implemented as ActionCommand classes instead (which is how they work under-the-hood anyway). These are also useful when you just want to encapsulate some logic in a way this easy to reuse, unit test, etc.

public class SaveUserCommand extends ActionCommand<User, User> {

  private final Database database;

public SaveUserCommand(final Database database) {

this.database = database;
  
}

public User save(final User user) {

final long databaseId = database.save(user);

return user.builder()

  .setId(databaseId)

  .build();

  
}
 
}
 

These can then be used as:

public void onClick(View saveAndClose) {

  new SaveUserCommand(database)

.then(SendUserToServer.INSTANCE)

.then(new FinishActivity(this))

.exec(userEditor.build());
 
}
 

Resources

PageIndicatorView will simplify your life while you working with Android ViewPager and need to indicate selected page. It's easy to setup and customize as you need with run-time preview rendering.

SwipeCoordinator simplifies the process of implementing animated swipeable views. It links a view with its parent as a single behavioral unit constrained by the parent boundaries. SwipeCoordinator supports both left-to-right and top-to-bottom direction.

Login/Signup app which handles boiler plate Validation logics using MVP design patterns with SQLite Database.

TextHighlighter is a simple android API for developers to show highlighted text in android apps, also provides methods to show styled text.

An Android debug / develop tools written using Kotlin language. All the features in Debug bottle are only available on debug build version with your app, it doesn't has an impact on release version.

Simple implementation of ForceTouch on Android

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