Last active
June 9, 2017 18:20
-
-
Save natan88/b1ecc27b00416bb5d8257947d622b330 to your computer and use it in GitHub Desktop.
Teste
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async.parallel( | |
{ | |
canal: function(callback){ | |
} | |
email: function(callback){ | |
callback(erro, retorno); | |
}, | |
function(err, result) { | |
} | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async.series( | |
{ | |
funcaoA: function(callback){ | |
callback(erro); | |
} | |
}, | |
function(err){ | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment