Top "Synchronous" questions

Synchronous means that the caller of a function waits for the response or completion of the function before returning control to the main program

Angular / TypeScript - Call a function after another one has been completed

I would like to call f2 after f1 has been completed. f1 function can be synchronous or asynchronous. I need …

angular typescript asynchronous promise synchronous
Nodejs Synchronous For each loop

I want to do a for each loop but have it run synchronously. Each iteration of the loop will do …

javascript mysql node.js synchronous
how to use Promise with express in node.js?

I am using Promise with Express. router.post('/Registration', function(req, res) { var Promise = require('promise'); var errorsArr = []; function …

node.js express mongoose promise synchronous
Change the asynchronous jQuery Dialog to be synchronous?

Currently, I'm working to replace "alert'/"confirm" with the jquery dialog. But most of legacy codes is written in some …

javascript jquery asynchronous dialog synchronous
node.js: readSync from stdin?

Is it possible to synchronously read from stdin in node.js? Because I'm writing a brainfuck to JavaScript compiler in …

stdin node.js synchronous
Can AFNetworking return data synchronously (inside a block)?

I have a function using AFJSONRequestOperation, and I wish to return the result only after success. Could you point me …

ios objective-c-blocks synchronous afnetworking
Javascript Promises with FileReader()

I have the following HTML Code: <input type='file' multiple> And Here's my JS Code: var inputFiles = document.…

javascript promise filereader synchronous
NSURLConnection synchronous request on https

Can anyone tell me the way how I can make a synchronous call to the https server? I am able …

iphone authentication synchronous
Why is node.js asynchronous?

Nobody has actually asked this (from all the 'suggestions' I'm getting and also from searching before I asked here). So …

javascript multithreading node.js asynchronous synchronous