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

NodeJs, javascript: .forEach seems to be asynchronous? need synchronization

I am currently working on a project with 3 friends using nodeJs, expressJs, MongoDB, html5,... Since we're fairly new to these …

javascript node.js asynchronous foreach synchronous
Sending one AJAX request at a time from a loop

I know this question has been asked countless times, but I cant figure out for the life of me how …

javascript wait synchronous
Waiting for completion block to complete in an AFNetworking request

I am making a JSON request with AFNetworking and then call [operation waitUntilFinished] to wait on the operation and the …

objective-c nsoperation synchronous afnetworking
Stop browser locking during (synchronous) Ajax?

What I am trying to do is append a loading image to a div (so the user knows something is …

javascript jquery ajax synchronous
How to make Meteor methods synchronous?

I need a way for a meteor call to be synchronous so that when a call is run, the code …

meteor methods synchronization call synchronous
How to make a synchronous request using Alamofire?

I am trying to do a synchronous request using Alamofire. I have looked on Stackoverflow and found this question: making …

ios swift alamofire synchronous
Synchronous v/s Asynchronous

I am trying to understand the basic example provided on the introduction page of tornado documentation. It has 2 blocks of …

python asynchronous callback tornado synchronous
How can I make a sync call with backbone fetch

I need to call a fetch with a synchronous call, I know with jquery ajax I can use {async: false} …

jquery ajax backbone.js synchronous
Javascript node-fetch synchronous fetch

I'm trying to use node-fetch with nodejs to make api calls to my personal api. I would like to be …

javascript async-await synchronous node-fetch
How to make a WebSQL query synchronous?

Consider: var globalvar; function viewyearmain() { db.transaction(function (tx) { tx.executeSql('SELECT * FROM BUDGET WHERE holdingtype="month"', [], function (tx, …

javascript sqlite asynchronous synchronous web-sql