0.0.9 • Published 6 years ago

async-tree v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

async-tree

Make it possible to depth-first traverse an async tree of events.

example

  • Call #1, return a list of integers
  • Call #2, for each integer make another call which returns another list of integers
  • Call #3, acts like Call #2 but uses integers got from each Call #2 response

This could be accomplished using async.waterfall, but all Call #2's must complete before all Call #3's and same for all Call #3's. Also, wiring results at each level to the next is tedious and verbose.

With async-tree, a priority queue is created and results of each Call #2 are fed to Call #3 with priority on finishing each branch.

The effect achieved is like processing a tree using async.waterfall, but traversal is handled in a more granular way and code is more terse and easier to test.

usage

var asyncTree= require('./asyncTree');

function getLevelOne(callback){
    var initialArgs = [0, 1, 2, 3, 4];
    callback(null, initialArgs);
}

function getLevelTwoItem(callback){
    var item = this.item;
    const results = new Array(item||1).fill().map(x => 2*item);
    setTimeout(function(){
        callback(null, results);
    }, [0, 2000, 2000, 3000, 1, 1][item]);
}

function getLevelThreeItem(callback){
    var item = this.item;
    setTimeout(function(){
        const results = new Array(item/2||1).fill().map(x => 2*item);
        callback(null, results);
    }, Math.floor(Math.random() * 3000));
}

var finalResultsArray = [];
function doneCallback(){
    console.log(`finished with ${finalResultsArray.length} results`);
}

function eachCallback(err, result){
    finalResultsArray.push(this.results);    
    console.log(result);
}

var functionArray = [
    getLevelOne,
    getLevelTwoItem,
    getLevelThreeItem
];

asyncTree({
    functionArray,
    concurrency: 2,
    delay: 100, //in ms
    doneCallback,
    eachCallback
});

notes

this.item is available in each function to track what arguments are passed to that function
this.results contains results from previous calls in branch

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago