asflow

0.0.2 • Public • Published

asFlow

Asynchronous flow control library for JavaScript and Nodejs.

These functions are based on Mixu's Node Book chapter 7. Control flow. They sure can be optimized and this readme file needs to be more thorough. This repository contains asFlow.js for use on clients, a node module and files for testing.

What I wanted with this library was to make easy to understand functions that control three types of asynchronous flow and only these three. Please feel free to make them faster and more reliable but keep them as readable as possible. My goal is for users new to these functions, to be able to use them without ever reading the Readme.md ...

USAGE:

1. CREATE YOUR FUNCTIONS

var function0 = function(optionalArgs0, optionalArgs1 ... optionalArgsN, call) {
  
  // Your code...
  
  call.currentResults();      // Returns and array of collected results at the moment sortet as the list of functions
  call.parentResult();        // Returns the result passed by the function above current in the list of functions
  call.resultByFunction(i);   // Returns specific result from a function in the list of functions
  call.back(optionalResult);  // Is required to be executed when the function returns and will deliver the result to the
                              // list of results
};

2. ADD THEM TO THE LIST

var functions = [
  function0,
  function1, [argument0, argument1 ... argumentN],  // Adding a optional list of arguments to function1
  function3,
  function4,
  function5, [argument0, argument1 ... argumentN]   // Adding a optional list of arguments to function5
];

3. RUN THE LIST OF FUNCTIONS IN ONE OF THESE THREE FLOW FUNCTIONS

var optionalCallback = function(results) {
  // Fires when the flow has completed and gives you a list with the results sorted as you sorted the
  // the list of functions.
};
asFlow.serialExecute(functions, optionalCallback);
asFlow.parallelExecute(functions, optionalCallback);
asFlow.parallelExecute_withLimit(functions, 3, optionalCallback);

Readme

Keywords

none

Package Sidebar

Install

npm i asflow

Weekly Downloads

3

Version

0.0.2

License

none

Last publish

Collaborators

  • hholmgren