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)

188
votes
17answers
150k 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" ...
112
votes
4answers
4k views

C# 5 async CTP: why is internal “state” set to 0 in generated code before EndAwait call?

Yesterday I was giving a talk about the new C# "async" feature, in particular delving into what the generated code looked like, and the GetAwaiter() / BeginAwait() / EndAwait() calls. We looked in ...
70
votes
7answers
26k 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(); ...
67
votes
15answers
13k views

Good introduction to the .NET Reactive Framework

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 ...
66
votes
13answers
9k views

A clean, lightweight alternative to Python's twisted?

A (long) while ago I wrote a web-spider that I multithreaded to enable concurrent requests to occur at the same time. That was in my Python youth, in the days before I knew about the GIL and the ...
60
votes
8answers
10k 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 ...
46
votes
8answers
54k 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 ...
45
votes
1answer
15k views

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 writing a web service asynchronously and I want to be able to run some tests to see if the asynchronous pattern ...
44
votes
7answers
29k 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 ...
35
votes
7answers
1k views

Is a non-blocking, single-threaded, asynchronous web server (like Node.js) possible in .NET?

I was looking at this question, looking for a way to create a single-threaded, event-based nonblocking asynchronous web server in .NET. This answer looked promising at first, by claiming that the ...
34
votes
3answers
1k views

Asynchronous programming best practices

I have recently written my first Android app which was roughly 8,000-10,000 lines of code. One thing that continuously hindered my use of normal design patterns was android's heavy use of ...
33
votes
8answers
17k 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 ...
32
votes
6answers
1k 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 ...
32
votes
6answers
15k 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 ...
27
votes
9answers
18k 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 ...
24
votes
2answers
4k views

What is the status of POSIX asynchronous I/O (AIO)?

There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For ...
21
votes
6answers
4k 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.
21
votes
5answers
15k views

How to use HttpWebRequest (.NET) asynchronously?

How can I use HttpWebRequest (.NET, C#) asynchronously?
20
votes
11answers
14k 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. ...
19
votes
2answers
4k views

Asychronous Programming in Python Twisted

I'm having trouble developing a reverse proxy in Twisted. It works, but it seems overly complex and convoluted. So much of it feels like voodoo... Are there any simple, solid examples of asynchronous ...
18
votes
4answers
304 views

C# Asynchronous Options for Processing a List

I am trying to better understand the Async and the Parallel options I have in C#. In the snippets below, I have included the 5 approaches I come across most. But I am not sure which to choose - or ...
18
votes
6answers
603 views

Best Practices for cache locality in Multicore Parallelism in F#

I'm studying multicore parallelism in F#. I have to admit that immutability really helps to write correct parallel implementation. However, it's hard to achieve good speedup and good scalability ...
18
votes
4answers
3k views

How to unit test asynchronous APIs?

I have installed Google Toolbox for Mac (http://code.google.com/p/google-toolbox-for-mac/) into Xcode and followed the instructions to set up unit testing found here ...
17
votes
8answers
2k views

Is asynchronous jdbc call possible?

I wonder if there is a way to make asynchronous call to a database? For instance, imagine that I've a big request that take a very long time to process, I want to send the request and receive a ...
16
votes
3answers
513 views

Redirecting before POST upload has been completed

I have form with file upload. The files to be uploaded actually are pictures and videos, so they can be quite big. I have logic which based on headers and first 1KB can determine if the rest will be ...
16
votes
6answers
6k 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 ...
16
votes
6answers
5k 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 ...
15
votes
5answers
2k views

Real world examples of Rx

I've been playing around with the Reactive Extension for a little while now, but mostly limited to handling/composing user driven events within a WPF frontend. It's such a powerful, new way of doing ...
15
votes
2answers
7k views

Understanding the Silverlight Dispatcher

I had a Invalid Cross Thread access issue, but a little research and I managed to fix it by using the Dispatcher. Now in my app I have objects with lazy loading. I'd make an Async call using WCF and ...
15
votes
3answers
4k views

C# -Four Patterns in Asynchronous execution

I heard that there are four patterns in asynchronous execution . "There are four patterns in async delegate execution: Polling, Waiting for Completion, Completion Notification, and "Fire and Forget". ...
15
votes
7answers
7k views

Alternative to BackgroundWorker that accepts more than one argument?

The BackgroundWorker object allows us to pass a single argument into the DoWorkEventHandler. // setup/init: BackgroundWorker endCallWorker = new BackgroundWorker(); endCallWorker.DoWork += new ...
14
votes
2answers
380 views

How to make a WCF REST method entirely asynchronous with the Task Parallel Library?

I am trying to make a WCF REST method entirely asynchronous (I don't want to block anywhere). Essentially I have a simple service with 3 layers: Service, Business Logic and Data Access Layer. The Data ...
14
votes
2answers
2k views

is node.js' console.log asynchronous?

Are console.log/debug/warn/error in node.js asynchrounous? I mean will javascript code execution halt till the stuff is printed on screen or will it print at a later stage? Also, I am interested in ...
14
votes
3answers
6k views

Javascript, NodeJS: is Array.forEach asynchronous?

I have a question regarding the native Array.forEach implementation of Javascript: Does it behave asynchronously? For example, if I call: [many many elements].forEach(function () {lots of work to ...
14
votes
1answer
1k views

Whats the difference between epoll, poll, threadpool?

Could someone explain what the difference is between epoll, poll and threadpool? What are the pros / cons? Any suggestions for frameworks? Any suggestions for simple/basic tutorials? It seams that ...
14
votes
6answers
8k 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. ...
13
votes
3answers
2k views

node.js async libs

There are a ton of libraries that help with fixing the layers of callback syndrome. In fact, there's too many, which one do i use?
13
votes
1answer
904 views

When and how to use Tornado? When is it useless?

Ok, Tornado is non-blocking and quite fast and it can handle a lot of standing requests easily. But I guess it's not a silver bullet and if we just blindly run Django-based or any other site with ...
13
votes
3answers
2k views

How to add a timeout to a function in Python

Many attempts have been made in the past to add timeout functionality in Python such that when a specified time limit expired, waiting code could move on. Unfortunately, previous recipes either ...
13
votes
2answers
2k views

Efficient Linux sockets (DMA/zero-copy)

I'm building a very high performance Linux server (based on epoll, non-blocking sockets, and async disk IO [based on io_submit/io_getevents/eventfd]). Some of my benchmarks show that the way I handle ...
13
votes
6answers
2k 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
9k views

Asynchronous processing or message queues in PHP (CakePHP)

I am building a website in CakePHP that processes files uploaded though an XML-RPC API and though a web frontend. Files need to be scanned by ClamAV, thumbnails need to be generated, etcetera. All ...
13
votes
9answers
8k 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 ...
12
votes
2answers
1k views

GWT - easiest way to do a simple loading screen until file is loaded

When clicking a button, my GWT application returns a PDF file embedded in an HTML page which looks something like: <html><head></head> <body marginwidth="0" marginheight="0" ...
12
votes
5answers
2k views

Java thread per connection model vs NIO

Is the non-blocking Java NIO still slower than your standard thread per connection asynchronous socket? In addition, if you were to use threads per connection, would you just create new threads or ...
12
votes
7answers
2k 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 ...
12
votes
6answers
12k views

How to create asynchronous method in c#

I have simple method in my C# app, it picks file from FTP server and parses it and stores the data in DB. I want it to be asynchronous, so that user perform other operations on App, once parsing is ...
11
votes
1answer
214 views

Does Async.StartChild have a memory leak?

When I run the following test (built with F#2.0) I get OutOfMemoryException. It takes about 5 min to reach exception on my system (i7-920 6gb ram if it was running as x86 process), but in any case we ...
11
votes
1answer
385 views

HTML5 script element - async attribute - when (and how best) to use?

Can you confirm my understanding of HTML5's <script async> attribute? Any libraries referenced by other code in the page should not specify the async attribute. For example, my script ...
11
votes
1answer
442 views

Twisted: Making code non-blocking

I'm a bit puzzled about how to write asynchronous code in python/twisted. Suppose (for arguments sake) I am exposing a function to the world that will take a number and return True/False if it is ...

1 2 3 4 5 75