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

How to write a loop in jQuery which waits for each function to complete before continuing the loop

Please forgive me if this is an obvious one. I have an unknown amount of elements on a page, which …

jquery loops wait each synchronous
JS - Can't combine lib files

I have multiple lib files in an an index.html file, that are loaded in proper sequence for an app …

javascript html shared-libraries synchronous
Some clarification needed about synchronous versus asynchronous asio operations

As far as I know, the main difference between synchronous and asynchronous operations. I.e. write() or read() vs async_…

c++ asynchronous tcp boost-asio synchronous
C# have async function call synchronous function or synchronous function call async function

I'm writing a C# .Net 4.5 library for doing common sql database operations (backup, restore, execute script, etc.). I want to …

c# asynchronous synchronous .net-4.5 async-await
Wait for an async function to return in Node.js

Supposed, I have a async function in Node.js, basically something such as: var addAsync = function (first, second, callback) { setTimeout(…

javascript node.js asynchronous synchronous event-loop
Asynchronous or Synchronous calling of event handlers in javascript

Are event handlers executed synchronously or asynchronously in JavaScript? Here is JS bin which is showing that event handler is …

javascript jquery asynchronous event-handling synchronous
Asynchronous and Synchronous Terms

I'm confused by the term asynchronous when related to programming. It seems to mean the opposite in programming terms as …

jquery asynchronous definition synchronous
jquery - submit post synchronously (not ajax)

I have a page (page 1) that accepts post requests, does some stuff and displays some data at the end. From …

jquery post synchronous
Retrofit 2 synchronous call error handling for 4xx Errors

I'm using a android-priority-jobqueue and I use retrofit to make synchronous calls to my rest api but i'm unsure how …

android error-handling retrofit2 synchronous
Read all text from stdin to a string

I'm writing a program in Node.js that (in some situations) wants to act as a simple filter: read everything …

node.js stdin synchronous