Friday, July 26, 2019

javascript - How to make a function wait until a callback has been called using node.js



I have a simplified function that looks like this:



function(query) {
myApi.exec('SomeCommand', function(response) {

return response;
});
}


Basically i want it to call myApi.exec, and return the response that is given in the callback lambda. However, the above code doesn't work and simply returns immediately.



Just for a very hackish attempt, i tried the below which didn't work, but at least you get the idea what i'm trying to achieve:



function(query) {

var r;
myApi.exec('SomeCommand', function(response) {
r = response;
});
while (!r) {}
return r;
}


Basically, what's a good 'node.js/event driven' way of going about this? I want my function to wait until the callback gets called, then return the value that was passed to it.



Answer



The "good node.js /event driven" way of doing this is to not wait.



Like almost everything else when working with event driven systems like node, your function should accept a callback parameter that will be invoked when then computation is complete. The caller should not wait for the value to be "returned" in the normal sense, but rather send the routine that will handle the resulting value:



function(query, callback) {
myApi.exec('SomeCommand', function(response) {
// other stuff here...
// bla bla..
callback(response); // this will "return" your value to the original caller

});
}


So you dont use it like this:



var returnValue = myFunction(query);


But like this:




myFunction(query, function(returnValue) {
// use the return value here instead of like a regular (non-evented) return value
});

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...