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.

Can't specify the 'async' modifier on the 'Main' method of a console app

I am new to asynchronous programming with the async modifier. I am trying to figure out how to make sure …

c# .net asynchronous console-application
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference

Given the following examples, why is outerScopeVar undefined in all cases? var outerScopeVar; var img = document.createElement('img'); img.onload = …

javascript asynchronous
AngularJS : Initialize service with asynchronous data

I have an AngularJS service that I want to initialize with some asynchronous data. Something like this: myModule.service('MyService', …

javascript angularjs asynchronous service angular-promise
How can I create an Asynchronous function in Javascript?

Check out this code : <a href="#" id="link">Link</a> <span>Moving</span&…

javascript jquery function asynchronous
jasmine: Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL

I have an angular service called requestNotificationChannel: app.factory("requestNotificationChannel", function($rootScope) { var _DELETE_MESSAGE_ = "_DELETE_MESSAGE_"; function deleteMessage(id, …

javascript angularjs unit-testing asynchronous jasmine
Return a value from AsyncTask in Android

One simple question: is it possible to return a value in AsyncTask? //AsyncTask is a member class private class MyTask …

java android asynchronous android-asynctask return
HttpClient.GetAsync(...) never returns when using await/async

Edit: This question looks like it might be the same problem, but has no responses... Edit: In test case 5 the …

c# .net asynchronous async-await dotnet-httpclient
Asynchronous Function Call in PHP

I am working on an a PHP web application and i need to perform some network operations in the request …

php asynchronous network-programming
What is the difference between synchronous and asynchronous programming (in node.js)

I've been reading nodebeginner And I came across the following two pieces of code. The first one: var result = database.…

javascript node.js asynchronous synchronous
How to use the CancellationToken property?

Compared to the preceding code for class RulyCanceler, I wanted to run code using CancellationTokenSource. How do I use it …

c# multithreading asynchronous concurrency synchronization