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.

socket.shutdown vs socket.close

I recently saw a bit of code that looked like this (with sock being a socket object of course): sock.…

python sockets asynchronous
How to reject in async/await syntax?

How can I reject a promise that returned by an async/await function? e.g. Originally: foo(id: string): Promise&…

javascript asynchronous typescript es6-promise ecmascript-2017
How can I run an external command asynchronously from Python?

I need to run a shell command asynchronously from a Python script. By this I mean that I want my …

python asynchronous subprocess scheduler
How to call any method asynchronously in c#

Could someone please show me a small snippet of code which demonstrates how to call a method asynchronously in c#?

c# asynchronous
How to force Sequential Javascript Execution?

I've only found rather complicated answers involving classes, event handlers and callbacks (which seem to me to be a somewhat …

javascript asynchronous callback execution synchronous
How do you create an asynchronous HTTP request in JAVA?

I'm fairly new to Java, so this may seem obvious to some. I've worked a lot with ActionScript, which is …

java asynchronous httprequest
How to create threads in nodejs

Is there any way to create threads for running multiple methods at a time? That way, if any method fails …

multithreading node.js asynchronous parallel-processing
Run two async tasks in parallel and collect results in .NET 4.5

I've been trying for a while to get something I thought would be simple working with .NET 4.5 I want to …

c# asynchronous task-parallel-library .net-4.5
Use Async/Await with Axios in React.js

Following How to use async/await with axios in react I am trying to make a simple get request to …

javascript json reactjs asynchronous ecmascript-2017
Which browsers support <script async="async" />?

On December 1, 2009, Google announced support for asynchronous Google Analytics tracking. The asynchronous tracking is achieved using the async directive for …

javascript html performance asynchronous google-analytics