Top "Asynchronous" questions

Asynchronous programming is a strategy for deferring operations with high latency or low priority, usually in an attempt to improve performance, responsiveness, and / or composability of software.

Async await in linq select

I need to modify an existing program and it contains following code: var inputs = events.Select(async ev => await …

c# linq asynchronous
Wait for a void async method

How can I wait for a void async method to finish its job? for example, I have a function like …

c# asynchronous
How to wrap async function calls into a sync function in Node.js or Javascript?

Suppose you maintain a library that exposes a function getData. Your users call it to get actual data: var output = …

javascript node.js asynchronous synchronous node-fibers
How to make an Asynchronous Method return a value?

I know how to make Async methods but say I have a method that does a lot of work then …

c# asynchronous
asynchronous vs non-blocking

What is the difference between asynchronous and non-blocking calls? Also between blocking and synchronous calls (with examples please)?

asynchronous blocking synchronous
Execute write on doc: It isn't possible to write into a document from an asynchronously-loaded external script unless it is explicitly opened.

I am trying to load a certain script after page load executes, something like this: function downloadJSAtOnload(){ var element = document.…

javascript asynchronous onload document.write
Is it possible to set async:false to $.getJSON call

Is it possible to set async: false when calling $.getJSON() so that the call blocks rather than being asynchronous?

jquery asynchronous getjson
Asynchronous Process inside a javascript for loop

I am running an event loop of the following form: var i; var j = 10; for (i = 0; i < j; i++) { …

javascript asynchronous for-loop synchronization
How to schedule a function to run every hour on Flask?

I have a Flask web hosting with no access to cron command. How can I execute some Python function every …

python asynchronous flask cron scheduled-tasks
How to sleep the thread in node.js without affecting other threads?

As per Understanding the node.js event loop, node.js supports a single thread model. That means if I make …

multithreading node.js asynchronous