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.

Understanding dispatch_async

I have question around this code dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSData* data = [NSData dataWithContentsOfURL: …

objective-c asynchronous dispatch-async
How to wait for a JavaScript Promise to resolve before resuming function?

I'm doing some unit testing. The test framework loads a page into an iFrame and then runs assertions against that …

javascript asynchronous promise
nodeJs callbacks simple example

can any one give me a a simple example of nodeJs callbacks, I have already searched for the same on …

javascript node.js asynchronous callback asynccallback
Asynchronous method call in Python?

I was wondering if there's any library for asynchronous method calls in Python. It would be great if you could …

python asynchronous
Call async/await functions in parallel

As far as I understand, in ES7/ES2016 putting multiple await's in code will work similar to chaining .then() with …

javascript node.js asynchronous ecmascript-6 babeljs
async await return Task

Can somebody explain what does this means into a synchronous method? If I try to change the method to async …

c# asynchronous async-await
Node JS Promise.all and forEach

I have an array like structure that exposes async methods. The async method calls return array structures that in turn …

javascript node.js asynchronous promise
Catch an exception thrown by an async void method

Using the async CTP from Microsoft for .NET, is it possible to catch an exception thrown by an async method …

c# asynchronous exception-handling async-await task-parallel-library
load scripts asynchronously

I am using several plugins, custom widgets and some other libraries from JQuery. as a result I have several .js …

javascript ajax html asynchronous
Sleep Command in T-SQL?

Is there to way write a T-SQL command to just make it sleep for a period of time? I am …

sql-server tsql asynchronous sleep