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.

How to make asynchronous HTTP requests in PHP

Is there a way in PHP to make asynchronous HTTP calls? I don't care about the response, I just want …

php http asynchronous
Simplest way to wait some asynchronous tasks complete, in Javascript?

I want to drop some mongodb collections, but that's an asynchronous task. The code will be: var mongoose = require('mongoose'); …

javascript node.js asynchronous mongoose synchronous
How to use HttpWebRequest (.NET) asynchronously?

How can I use HttpWebRequest (.NET, C#) asynchronously?

c# .net asynchronous httprequest
SyntaxError: Unexpected token function - Async Await Nodejs

I was experimenting on using Node version 6.2.1 with some of my code. Had plans to migrate most of the hyper-callback …

javascript node.js express asynchronous async-await
What are the best use cases for Akka framework

I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many …

java scala asynchronous use-case akka
How do I access store state in React Redux?

I am just making a simple app to learn async with redux. I have gotten everything working, now I just …

javascript asynchronous reactjs redux react-redux
Asynchronous shell exec in PHP

I've got a PHP script that needs to invoke a shell script but doesn't care at all about the output. …

php asynchronous shell
How to use JUnit to test asynchronous processes

How do you test methods that fire asynchronous processes with JUnit? I don't know how to make my test wait …

java unit-testing asynchronous junit
How can I limit Parallel.ForEach?

I have a Parallel.ForEach() async loop with which I download some webpages. My bandwidth is limited so I can …

c# .net asynchronous parallel.foreach
Why do we need middleware for async flow in Redux?

According to the docs, "Without middleware, Redux store only supports synchronous data flow". I don't understand why this is the …

javascript asynchronous reactjs redux redux-thunk