Asynchronous programming is simply allowing some portions of code to be executed on separate threads. It makes your applications perform better, be more responsive, and use the resources of the system they are running on to the fullest extent.

learn more… | top users | synonyms (1)

610
votes
18answers
375k views

How can I upload files asynchronously with jQuery?

I would like to upload a file asynchronously with JQuery. This is my HTML: <span>File</span> <input type="file" id="file" name="file" size="10"/> <input id="uploadbutton" ...
229
votes
7answers
141k views

How can I get jQuery to perform a synchronous, rather than asynchronous, AJAX request?

I have a javascript widget which provides standard extension points. One of them is the beforecreate function. It should return false to prevent an item from being created. I've added an AJAX call ...
90
votes
11answers
53k views

Asynchronous PHP calls?

Is there a way to PHP make asynchronous http calls? I don't care about the response, I just want to do something like file_get_contents(), but not wait on the request to finish before executing the ...
168
votes
17answers
127k views

How to check internet access on Android? InetAddress never timeouts

I got a AsyncTask that is supposed to check the network access to a host name. But the doInBackground is never timed out. Anyone have a clue? public class HostAvailabilityTask extends ...
108
votes
8answers
42k views

Implement C# Generic Timeout

I am looking for good ideas for implementing a generic way to have a single line (or anonymous delegate) of code execute with a timeout. TemperamentalClass tc = new TemperamentalClass(); ...
58
votes
11answers
40k views

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. The shell script makes a number of SOAP calls and is slow to complete, so I don't want to slow down ...
42
votes
15answers
31k views

How do I make an asynchronous GET request in PHP?

I wish to make a simple GET request to another script on a different server. How do I do this? In one case, I just need to request an external script without the need for any output. ...
6
votes
2answers
2k views

JavaScript asynchronous return value / assignment with jQuery

I have the following jQuery Function. I'm trying to return the GUID value shown here in the alert(); The alert works fine and the value is populated, however I can't seem to assign it to a variable ...
66
votes
5answers
40k views

How to use HttpWebRequest (.NET) asynchronously?

How can I use HttpWebRequest (.NET, C#) asynchronously?
88
votes
7answers
47k views

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 the <script> tag. Which browsers ...
20
votes
8answers
32k views

Asynchronous IO in Java?

What options for async io (socket-based) are there in java other then java.nio? Also does java.nio use threads in the backround (as I think .NET's async-socket-library does, maybe it's been changed) ...
3
votes
1answer
2k views

After calling chrome.tabs.query, the results are not available

I'm creating (learning) an extension for Google Chrome. To debug some code, I inserted console.log(), as follows: var fourmTabs = new Array(); chrome.tabs.query({}, function (tabs) { for (var i ...
31
votes
8answers
56k views

Can jquery .ajax load image?

I want to load external images on my page asynchronously using jquery and I have tried the following: $.ajax({ url: "http://somedomain.com/image.jpg", timeout:5000, success: function() { ...
18
votes
7answers
22k views

C non-blocking keyboard input

I'm trying to write a program in C (on linux) that loops until the user presses a key, but shouldn't require a keypress to continue each loop. Is there a simple way to do this? I figure I could ...
4
votes
3answers
13k views

NetworkOnMainThreadException

I just found out about NetworkOnMainThreadException at official docs and was wondering if the emulator is throwing this. I have been testing my app quite a bit and as far as I know all networking is ...
3
votes
2answers
25k views

Return value from function with an Ajax call [duplicate]

Can someone tell me how to return the value of status as the function's return value. function checkUser() { var request; var status = false; //create xmlhttprequest object here [called ...
2
votes
1answer
404 views

ASP.NET Server does not process pages asynchronously

I have a page with button, and i want to load 2 data grids with data asynchronously by cliking the button. This is the code of the page, I use jquery to make calls to other 2 pages that will yield me ...
30
votes
3answers
24k views

What is AsyncCallback?

Hi I have seen the AsyncCallback in many client server programs. What is the use of AsyncCallback and why should we use it?
31
votes
9answers
21k views

Run PHP Task Asynchronously

I work on a somewhat large web application, and the backend is mostly in PHP. There are several places in the code where I need to complete some task, but I don't want to make the user wait for the ...
13
votes
4answers
8k views

Order of event handler execution

If I set up multiple event handlers, like so: _webservice.RetrieveDataCompleted += ProcessData1; _webservice.RetrieveDataCompleted += ProcessData2; what order are the handlers run when the event ...
8
votes
3answers
33k views

Objective-C Asynchronous Web Request with Cookies

I am writing a program in Objective-C and I need to make web requests to web server, but asynchronously and I am fairly new on mac, I am very good at windows technologies, but I need to know that if I ...
44
votes
6answers
3k views

How Do I Choose Between the Various Ways to do Threading in Delphi?

It seems that I've finally got to implement some sort of threading into my Delphi 2009 program. If there were only one way to do it, I'd be off and running. But I see several possibilities. Can ...
5
votes
3answers
1k views

How should I perform a long-running task in ASP.NET 4?

I am building a website using .NET 4. There are lots of MSDN articles dating from 2003, about using Thread objects and 2007, using Asynchronous Pages in .NET 2, but that is all pretty stale. I know ...
14
votes
6answers
4k views

Disable Session state per-request in ASP.Net MVC

I am creating an ActionResult in ASP.Net MVC to serve images. With Session state enabled, IIS will only handle one request at a time from the same user. (This is true not just in MVC.) Therefore, on ...
31
votes
8answers
14k views

Get notification when NSOperationQueue finishes all tasks

NSOperationQueue has waitUntilAllOperationsAreFinished, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes. What's the best way to ...
11
votes
3answers
5k views

How to know when a web page is loaded when using QtWebKit?

Both QWebFrame and QWebPage have void loadFinished(bool ok) signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded ...
13
votes
3answers
1k views

How could the new async feature in c# 5.0 be implemented with call/cc?

I've been following the new announcement regarding the new async feature that will be in c# 5.0. I have a basic understanding of continuation passing style and of the transformation the new c# ...
7
votes
7answers
11k views

JQuery synchronous animation

In many cases I wish animation to be executed synchronously. Especially when I wish to make a a series of sequential animations. Is there an easy way to make a jQuery animate function call ...
8
votes
6answers
9k views

C# Begin/EndReceive - how do I read large data?

When reading data in chunks of say, 1024, how do I continue to read from a socket that receives a message bigger than 1024 bytes until there is no data left? Should I just use BeginReceive to read a ...
65
votes
7answers
12k views

asynchronous vs non-blocking

What is the difference between asynchronous and non-blocking calls? Also between blocking and synchronous calls(with examples please)? Thanks.
20
votes
7answers
19k views

.NET Asynchronous stream read/write

I have been trying to solve this "Concurrent Programming" exam exercise (in C#): Knowing that Stream class contains int Read(byte[] buffer, int offset, int size) and void Write(byte[] buffer, int ...
24
votes
5answers
9k views

How to write Asynchronous LINQ query?

After I read a bunch of LINQ related stuff, I suddenly realized that no articles introduce how to write asynchronous LINQ query. Suppose we use LINQ to SQL, below statement is clear. However, if the ...
44
votes
6answers
23k views

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.shutdown(socket.SHUT_RDWR) sock.close() What exactly is the purpose of calling shutdown on the ...
14
votes
5answers
13k views

How do I return a variable from Google Maps JavaScript geocoder callback?

I am working with the google maps API and whenever I return the variable to the initialize function from the codeLatLng function it claims undefined. If I print the variable from the codeLatLng it ...
10
votes
4answers
9k views

Loading an image into UIImage asynchronously

I'm developing an iOS 4 application with iOS 5.0 SDK and XCode 4.2. I have to show some post blogs into a UITableView. When I have retreived all web service data, I use this method to create an ...
13
votes
6answers
15k views

Android: Cancel Async Task

I use an async task to upload an image and get some results. While uploading the image I see a progress dialog, written in onPreExecute() method like this: protected void onPreExecute() { ...
21
votes
7answers
4k views

How to chain ajax requests?

I have to interact with a remote api that forces me to chain requests. Thats a callback-hell in asynchronous mode: // pseudocode: ajax(request_object, callback) ajax(a, function() { ...
13
votes
3answers
13k views

Is it possible to set async:false to $.getJSON call

Is it possible to set async: false when calling $.getJSON() so that the call blocks rather than being asynchronous?
1
vote
3answers
2k views

How to make ui responsive all the time and do background updating?

I am creating a application which displays 8 thumbnails per page and it can have n pages. Each of these thumbnails are UIViews and are added to UIScrollView. However i have implemented Paging using ...
3
votes
5answers
5k views

Accessing UI Control from BackgroundWorker Thread - C#

I have a button on my windows form that calls the RunWorkerAsync() method, this in turn performs an action which then updates a ListBox on the same form. After the DoWork event has finished I assign ...
3
votes
2answers
3k views

Why does asynchronous delegate method require calling EndInvoke?

Why does the delegate need to call the EndInvoke before the method fires? If i need to call the EndInvoke (which blocks the thread) then its not really an asynchronous call is it? Here is the code ...
0
votes
2answers
638 views

Are there any atomic javascript operations to deal with Ajax's asynchronous nature?

I am dynamically loading code (functions) from a server and executing it as javascript code then storing it in an array and executing. All these snippets of code must be executed exactly once. The ...
161
votes
10answers
32k views

Good use case for Akka

I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many actual examples of use cases it would be good for. So I would be interested in hearing ...
103
votes
16answers
24k views

Good introduction to the .NET Reactive Framework [closed]

Aside from the Microsoft documentation, is there a good introduction and tutorial to the Microsoft Reactive (Rx) framework? Also, what is a good example (with code) that Reactive makes easier of a ...
47
votes
11answers
9k views

How to avoid long nesting of asynchronous functions in Node.js

I want to make a page that displays some data from a DB, so I have created some functions that get that data from my DB. I'm just a newbie in Node.js, so as far as I understand, if I want to use all ...
38
votes
8answers
17k views

How would I run an async Task<T> method synchronously?

I'm learning about async/await, and ran into a situation where I need to call an async method synchronously. How can I do that? Async method: public async Task<Customers> GetCustomers() { ...
16
votes
3answers
3k views

Designing a fluent Javascript interface to abstract away the asynchronous nature of AJAX

How would I design an API to hide the asynchronous nature of AJAX and HTTP requests, or basically delay it to provide a fluent interface. To show an example from Twitter's new Anywhere API: // get ...
25
votes
7answers
19k views

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 script to continue running while the external command goes off and does whatever it needs to do. ...
12
votes
9answers
16k views

Can We use threading in PL/SQL?

Is there any feature of asynchronous calling in PL/SQL? Suppose I am in a block of code would like to call a procedure multiple times and wouldn't bother when and what the procedure returns? BEGIN ...
10
votes
3answers
2k views

javascript: execute a bunch of asynchronous method with one callback

I need to execute a bunch of asynchronous methods (client SQLite database), and call only one final callback. Of course, the ugly way is: execAll : function(callBack) { asynch1(function() { ...

1 2 3 4 5 20