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)

4
votes
0answers
116 views

Asynchronous writes to a file in R

Could anyone provide me with some guidance on how to asynchronous writes from chunks of a very large file, each of which is being processed with the same function in a number of clusters (8-500). The ...
4
votes
0answers
329 views

how to handle Jetty exception - a long running http request times out, but the process it calls never terminates and Jetty is unhappy

I have a jetty server handling long running http requests- the responses are generated by an a different process X and end up in a collector hash which Jetty requests periodically check. There are 3 ...
4
votes
0answers
317 views

Implementing the AsyncContext notifier thread

Here's the scenario: typical web push/comet application where short messages must be pushed at the same time to 3000-4000 connected users; moving from 1 thread/connection model to a new ...
4
votes
0answers
879 views

How do I combine @Asynchronous and Weld/CDI Events and @Observes(during=TransactionPhase.AFTER_COMPLETION) in Glassfish 3.1

First of all let me state, that the following code example worked just fine in GF 3.0.1. The troubles started when we switched to GF 3.1. I'm using a method @Asynchronous public void ...
3
votes
0answers
73 views

Attempt at an Asynchronous method is failing

I have an MVC3/.NET 4 application which uses Entity Framework (4.3.1 Code First) I have wrapped EF into a Repository/UnitOfWork pattern as described here… ...
3
votes
0answers
45 views

MIDI beat clock in Java

I'm creating a drum machine and I'm having some problems with outputting MIDI beat clock. For simplicity, I've set the internal clock to run by calling Thread.sleep(_time), where _time is the amount ...
3
votes
0answers
59 views

Should I never call HostingEnvironment.UnregisterObject?

While trying to implement asyncronous email over smtp in my ASP.Net MVC 3 application I've come around SO SmtpClient.SendAsync blocking my ASP.NET MVC Request thread. There I found the article by Phil ...
3
votes
0answers
101 views

Deferrable vs callback interface

What are benefits of using Deferrable instead of callbacks. Small example. # This is Deferrable interface request = NetworkIO.get request.callback do |resp| puts "Job is done" end request.errback ...
3
votes
0answers
244 views

gevent.http.HTTPServer API suggests streaming, but instead buffers entire requests and responses

The APIs offered by gevent.http.HTTPServer would seem to support streaming in both directions. The request object does not offer the request body as a simple string, but instead provides an ...
3
votes
0answers
112 views

Asynchronous InetSocketAddress Equivalent?

I need an equivalent to java.net.InetSocketAddress that can resolve the host name asynchronously. I'm developing a polling program that must resolve and connect to over 25,000 servers every five ...
3
votes
0answers
145 views

Why would I choose a threaded/process-based approach vs. asynchronous web server

As I've done some more research into web server software, I've begun to question if Apache's thread/process based method is the way to go vs. the the asynchronous request handling provided by servers ...
3
votes
0answers
329 views

Asynchronous WMI Event handling in .NET

I am trying to run some processes remotely using WMI and the wait for the process to finish. Currently the event watcher is semi-synchronous using WaitForNextEvent which also has a timeout in case the ...
3
votes
0answers
492 views

XML-RPC Asynchronous Calls Implementation

Does XML-RPC for C/C++ use multiple threads to make non-blocking asynchronous calls? Or does that depend on the transport library used? In that case, my question would be, does libCurl make multiple ...
3
votes
0answers
929 views

Getting async http requests to work on rails 3beta4/ruby 1.9.2-rc2/thin/eventmachine

I've been trying to get basic async HTTP calls to work in my app. I've tried using some code in my app from the Rails 3 async stack demo: http://github.com/igrigorik/async-rails, but I'm getting ...
2
votes
0answers
47 views

Extending tornado.gen.Task

Here's the interesting bits of a stupid websocket clock: class StupidClock(websocket.WebSocketHandler): clients = {} @web.asynchronous @gen.coroutine def open(self): ...
2
votes
0answers
43 views

Asyncronously send file over TCP connection

so I'm making an iOS app, but this is more of a general networking question. So what I have is one phone that acts as the server and then a bunch of phones connect to the phone as the client. ...
2
votes
0answers
84 views

Async ProcessStartInfo : Run cmd program to show in textbox just like cmd window in real time

I am trying to run an exe program that outputs to the command box. I am redirecting the output to show in a textbox, but it seems to only show the entire results when the program is finished. I want ...
2
votes
0answers
174 views

How to use async with Visual Studio 2010 and .NET 4.0?

I want to add async support to current VS 2010 .NET 4.0 C# project I have found: Visual Studio Async CTP - http://www.microsoft.com/en-us/download/details.aspx?id=9983 Microsoft.Bcl.Async - ...
2
votes
0answers
168 views

How to make the download action asynchronous in asp.net mvc 3?

I am streaming a file to client for download. But it may happen that file size could be really big (upto few GBs) and thus I don't want to block the user to click other buttons on the webpage which ...
2
votes
0answers
50 views

O_DIRECT vs. AIO_RAW

When using POSIX asynchronous I/O, are there any differences between using O_DIRECT and AIO_RAW? Or should I/can I use both? We are working on a NoSQL database server and are looking at ways of making ...
2
votes
0answers
55 views

Blocked Worker Threads in WCF

In Juval Lowy's text "Programming WCF Services", he writes: ...when the client invokes a method of the form Begin() with AsyncPattern set to true, this tells WCF not to try to directly invoke a ...
2
votes
0answers
86 views

libmemcached - memcached_mget seems to block

I have a single memcached server. I use the libmemcached C api to interface with it. I am using non blocking mode and no reply mode (behavior flags). I am also using libmemcached inside an nginx C ...
2
votes
0answers
168 views

jQuery Ajax async true not work, but seems to work in sync

i have a web page with more div's. Each div load via ajax one action that calculate and show the report data in html. Code html: <div class="divAutoLoading" ...
2
votes
0answers
38 views

Getting a message of asynchronous GetReceiveData method

I have in MainPage: private void AcceptCallBack(IAsyncResult ar) { try { ((Service1)ar.AsyncState).EndAccept(ar); } catch { } } And in service1: private void ...
2
votes
0answers
78 views

what are the properties of an asynchronous database driver?

Today I was discussing with some python friends some of the challenges in managing connection pools in async networking frameworks like Twisted and Tornado. I know there are community developed ...
2
votes
0answers
168 views

Wait for async thrift requests to complete

I am invoking multiple async calls of thrift from my code. I would like to wait for all of them to complete before going on with my next stage. for (...) { TNonblockingTransport transport = new ...
2
votes
0answers
94 views

Performance of: asynchronous request handler with blocking tasks handled by worker pool

How is the performance of this script: http://tornadogists.org/2185380/ copied below. from time import sleep from tornado.httpserver import HTTPServer from tornado.ioloop import IOLoop from ...
2
votes
0answers
96 views

GetAsync from unknown IPAddress cause application to crash

Appliction: A WPF Application using HttpClient to asynchronously get data from a Web API(eg.: "http://<ServerIP>/api/GetData") Getting data interval: 3s; Sample Code: //initialize ...
2
votes
0answers
179 views

finally block in tornado gen engine not works

Suppose, (using tornado) one wants to transfer a big data to a slow client, and prints the amount of data transfered. I wrote this simple code for this purpose: from tornado import web, ioloop, gen ...
2
votes
0answers
308 views

Asynchronous IO on serial port

I need your advices in designing a fully asynchronous IO on a half-duplex serial port. Currently I have a reader thread and many writer threads controlled by semaphores and a mutex. Now I want to ...
2
votes
0answers
29 views

Toast before async task with get() method not shown until async task is finished

I have an async task which gets some info and pass it back to the main thread. So, I'm using the get() method. I know you cannot update the UI once you have such an async task running (it is more a ...
2
votes
0answers
114 views

.net mvc 3/4 app pool threads usage with async actions

Lets say u have a set amount of maximum threads in your app pool to process web requests for ur mvc application. When an async method is called from within ur SYNCRONIOUS controller action does that ...
2
votes
0answers
69 views

Drawbacks with embedding event handlers in methods

Sometimes when I use assemblies that have an asynchronous approach for interaction (you call a method and then you get an event back with the answer) I like to convert them to synchrounus methods by ...
2
votes
0answers
266 views

Display output from command line program realtime in asp.net

I am writing a web app where the application runs a command on the system using System.Diagnostics class. I wanted to display realtime output from a command which takes a lot of time to complete. ...
2
votes
0answers
129 views

Sometimes main BPEL process doesn't receive a callback message from asyncronous process

Sometimes main BPEL process doesn't receive a callback message from asyncronous process. Asyncronous process invokes the callback and completes successfully, but the main process stays in active ...
2
votes
0answers
128 views

Beginner control flow concerns in Objective C

In a basic Reminder app, I have delegate method where I call a method scheduleNotification to schedule a UILocalNotification and call an additional method addReminderToDataModel to save the Reminder ...
2
votes
0answers
160 views

UIWebView async requests blocks scrolling

I've been searching for something like this in SO and nothing came up. So i've decided to ask for the first time here. I'm working on an iOS project. I have a UIWebView working fine with a ...
2
votes
0answers
190 views

Android File Upload Queue with Cancellation support

We are developing an Android application, where there is a need to upload several photos to our server in an asynchronous way. Consider that as soon as a picture is taken, it will start being ...
2
votes
0answers
168 views

How to get file modification date asynchronously in actionscript3

I am trying to poll a file to check if it has been modified or deleted on disk. In case of slow network if I use the File exists or modificationDate properties, the application will hang. Is there ...
2
votes
0answers
95 views

Session-like storage option for a non-serializable object?

Background (Skip this part if you want) Feel free to skip over this part if you choose, it's just some background for those who want to better understand the problem At the beginning of one action ...
2
votes
0answers
382 views

Design considerations for heavy loaded asp.net MVC + Web API application and asynchronous message bus

I'm planning to build a quite large application (large in term of concurrent user / number of request, not in term of features). Basically, I'll have a service somewhere, that is waiting for commands ...
2
votes
0answers
270 views

How to test with process.nextTick

I am using Mocha to test some Node.js code and want to use process.nextTick() to call a callback of a method. The Code @getNouns: (callback) -> @_wordnik.randomWords( ...
2
votes
0answers
194 views

Stateless or stateful c# actors

I'm designing a project which will activate and control many asynchronous actors simultaneously. I'd like to ask, which approach should I use for more stability and scalability? Stateless or ...
2
votes
0answers
269 views

Is it possible to use async/await in webmethod asmx service

I am trying to figured it out, but have no success for now. Is it possible to use async/await in webmethod asmx service ? What I found till now is that async/await can be used only in WCF service ...
2
votes
0answers
134 views

Should I convert my action method to async action method?

I have a web site where user can upload a PDF and convert it to WORD doc. It works nice but sometimes (5-6 times per hour) the users have to wait more than usual for the conversion to take place.... ...
2
votes
0answers
531 views

How can I handle async exceptions using System.Net.Http.HttpClient with my integration tests?

I'm running a suite of integration tests that use System.Net.HttpClient. Most of our "act" sections in these tests use this general format: // Arrange // Do some stuff // Act var download = _client ...
2
votes
0answers
97 views

Use tests for eventmachine

I execute something every 10 minutes using eventmachine in a ruby application and I have to test that it is cancelled at some precise time. So I need something in my tests to simulate that the user ...
2
votes
0answers
156 views

If i run syncroniously on different threads does it makes it async per total?

I'm wondering if my application is getting strings asynchronously if i run it synchronously on other threads? I don't actually know how to use the BeginSend/BeginReceive, so I used socket.Send(...), ...
2
votes
0answers
140 views

YepNope key value pairs not executing as expected

I am starting to learn YepNope and have a script like such: yepnope([ { load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', }, { test: true, ...
2
votes
0answers
328 views

iOS Progressive asset (or asset bundle) loading after app launch

I'm looking to add more gradual/progressive asset loading to my iOS app, a bit like ZeptoLab do for Cut the Rope. I want to reduce the time the user spends on the static Default.png while the app ...

1 2 3 4 5 32