/*
* Async Manager
* Autor: jser.me
*
* Verwendung:
* var asyncMg = require('./AsyncManager') ;
* asyncMg
* .push(function(next){
* some_aysnc_method().on('success'{
* next();
* * })
* })
* .push( ... )
* .run() //Ausführen
* .on('success', function() {
* allThings_is_down();
* });
function typeOf( obj ){
return Object.prototype.toString.call( obj ).match(/[object ([^]]*)]/)[1];
}
function AsyncManager( arg ){
this.execArrys = [];
this.push( arg );
}
//Verwenden Sie die vom System bereitgestellte Vererbungsmethode require('util').inherits( AsyncManager, require('events').EventEmitter );
//Markieren Sie die Anzahl erfolgreich ausgeführter Funktionen
AsyncManager.prototype.succCount = 0;
//Hinzufügen
AsyncManager.prototype.push = function( arg ) {
var This = this;
if( typeOf(arg) == 'Array' ){
arg.forEach( function(v,i){
This.execArrys.push( v );
});
.
//Ausführen
AsyncManager.prototype.run = function(){
var self = this;
If( this.succCount == this.execArrys.length ) {
//Ereignisse werden ausgelöst, nachdem alle Funktionen erfolgreich ausgeführt wurden
this.emit( 'success' );
} else {
this.execArrys[ this.succCount ]( self.run.bind( self ) );
}
this.succCount ;
return this; //Chain one
};
exports = module.exports = function( arg ){
return new AsyncManager( arg );
}