Search code examples
javascriptamazon-web-servicesaws-sdk-js

Return value from callback function in AWS Javascript SDK


I'm using the AWS Javascript SDK and I'm following the tutorial on how to send an SQS message. I'm basically following the AWS tutorial which has an example of the sendMessage as follows:

sqs.sendMessage(params, function(err, data) {
  if (err) {
    console.log("Error", err);
  } else {
    console.log("Success", data.MessageId);
  }
});

So the sendMessage function uses a callback function to output whether the operation was successful or not. Instead of printing to the console I want to return a variable, but every value I set is only visible within the callback function, even global variables like window.result are not visible outside the callback function. Is there any way to return values outside the callback?

The only workaround I've found at the moment is to set a data attribute in an HTML element, but I don't think it's really elegant solution.


Solution

  • I would suggest to use Promises and the new async and await keywords in ES2016. It makes your code so much easier to read.

    async function sendMessage(message) {
    
        return new Promise((resolve, reject) => {
    
            // TODO be sure SQS client is initialized
            // TODO set your params correctly 
            const params = {
                payload : message
            };
    
            sqs.sendMessage(params, (err, data) => {
                if (err) {
                    console.log("Error when calling SQS");
                    console.log(err, err.stack); // an error occurred
                    reject(err);
                } else {
                    resolve(data);
                }
            });         
        });
    }
    
    // calling the above and getting the result is now as simple as :
    const result = await sendMessage("Hello World");