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.

Why is setState in reactjs Async instead of Sync?

I have just found that in react this.setState() function in any component is asynchronous or is called after the …

javascript multithreading asynchronous reactjs
How do I chain three asynchronous calls using jQuery promises?

I have three HTTP calls that need I need to make in a synchronous manner and how do I pass …

javascript jquery asynchronous deferred
await Task.Delay() vs. Task.Delay().Wait()

In C# I have the following two simple examples: [Test] public void TestWait() { var t = Task.Factory.StartNew(() => { Console.…

c# asynchronous task wait async-await
fs.writeFile in a promise, asynchronous-synchronous stuff

I need some help with my code. I'm new at Node.js and have a lot of trouble with it. …

node.js asynchronous synchronization amazon amazon-product-api
How to use the 'main' parameter in package.json?

I have done quite some search already. However, still having doubts about the 'main' parameter in the package.json of …

javascript node.js rest asynchronous openshift
What is the difference between asynchronous programming and multithreading?

I thought that they were basically the same thing — writing programs that split tasks between processors (on machines that have 2+ …

c# multithreading asynchronous parallel-processing async-await
Core pool size vs maximum pool size in ThreadPoolExecutor

What exactly is the difference between core pool size and maximum pool size when we talk in terms of ThreadPoolExecutor? …

java asynchronous threadpoolexecutor
How to create an asynchronous method

I have simple method in my C# app, it picks file from FTP server and parses it and stores the …

c# asynchronous delegates
Using Moq to mock an asynchronous method for a unit test

I am testing a method for a service that makes a Web API call. Using a normal HttpClient works fine …

c# unit-testing asynchronous moq
What is AsyncCallback?

What is the use of AsyncCallback and why should we use it?

c# asynchronous