Class: Sequencer

ssync/sequence~Sequencer

Primary Sequencer Class

Constructor

new Sequencer()

Source:
Example
var sequencer = new Sequencer({
     sequence : [
         function1,
         function2
     ],
     args : {
         arg1 : "String",
         arg2 : true
     },
     callback: function(err, data) {
         //Do something with the result of the final output
     }
 });

 sequencer.go();

Methods

go()

Convenience Method
Source: