Class: Sequencer

Sequencer

new Sequencer()

Primary Sequencer Class
Source:
Example
var sequencer = new Sequencer();

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

 sequencer.go();