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)

0
votes
0answers
12 views

ASync Socket programmer

I'm having an issues with a new socket server. The program has a listener that receives requests from a client. It also has a async connection to another server. So when a request comes in it brokers ...
0
votes
0answers
14 views

MVC3/Azure - What's the most scalable way to handle 50k+/second quick API calls?

I have a farm of Web Roles running on Azure based on MVC3 that potentially need to handle ~50k API calls per second. The calls will be quick, all they do is adding some data to Azure Storage Queues (I ...
0
votes
2answers
32 views

how to check if all ajax functions are done loading in the page?

In my page I am using SharePoint 2010 client object model to call asynchronous functions (ajax calls). On page load, I make lots of ajax calls to load data. But I would like to know if there is a way ...
0
votes
0answers
8 views

Android Asynchronous Http Client (loopj) and authentication challenge is empty

I'm using the LoopJ library to make POST requests on my Android APP. In the login process (The server is IIS with WebAPI and NET.membership), if I send a POST request with a correct username/password, ...
2
votes
1answer
564 views

JSON Incorrectly Returns Using Spring MVC 3.2 Deferred Result

I am attempting to use Spring MVC 3.2 asynchronous deferred results for a RESTful JSON service. Using the synchronous approach: @ResponseBody @RequestMapping(value = "/catalog", method = ...
2
votes
3answers
162 views

Is async HttpClient from .Net 4.5 a bad choice for intensive load applications?

I recently created a simple application for testing the HTTP call throughput that can be generated in an asynchronous manner vs a classical multithreaded approach. The application is a able to ...
1
vote
1answer
37 views

Is asynchronous non-blocking event driven approach the only way to “asynchronous programming”? [closed]

I'm bit confused about the terminology here. Let a program consists of some tasks, conceptually distinct: In the asynchronous programming model tasks are interleaved with one another, but in a ...
1
vote
1answer
17 views

Twisted / How Deferreds work

How does Twisted know that a function should be executed in an asynchronous way? Asynchronous functions should return a Deferred(immeadiately) with call-/errbacks attached that will be called when ...
2
votes
1answer
18 views

Ambiguous Invocation on Generic ContinueWith

I'm writing a simple C# console application that uses Asynchronous Tasks and Entity Framework (with the intent to run it under Linux (RHEL) with Mono, but that's a whole other challenge). Note that ...
6
votes
3answers
2k views

Catching an exception thrown in an asynchronous callback

I have a method that takes a callback argument to execute asynchronously, but the catch block doesn't seem to be catching any exceptions thrown by the synchronous call (this.Submit refers to a ...
0
votes
1answer
14 views

Ask for credentials during HttpURLConnection without Interrupt the thread

Recently i came across the following issue: I have a webview that loads data in a asynchronous way from a HttpURLConnection, say now that you need from the user to provide credentials so you move on ...
0
votes
0answers
12 views

jmeter async load test socket closed error

I am testing a web service that waits for an event. I am using Jmeter and have set up a thread group, CSV data set, and http header manager. The test starts and runs for 3 threads (users) each one ...
1
vote
1answer
39 views

How to put into HTML code that will load data from another server?

I am interested in the functionality of Disqus - a user will put code from Disqus and this code will remotely fetch the data necessary. Here's an example of what Disqus provides the user: <script ...
0
votes
1answer
30 views

@Async Spring gets recalled for every request of different sessions

I have a spring @Async annotated method in a bean, then in the controller I call that bean's method on a user request, and I do it this way so I can get a progress back from that bean, and it works ...
0
votes
1answer
31 views

How should I structure my nested reactivemongo calls in my play2 application?

I'm in the process of trying to combine some nested calls with reactivemongo in my play2 application. I get a list of objects returned from createObjects. I then loop over them, check if the object ...
0
votes
3answers
42 views

EasyNetQ not calling subscriber

I have an ASP.NET MVC action that verifies that a connection string properly works to connect to a server using RabbitMQ. How I do this is by simply creating a queue, subscribing to it and then right ...
0
votes
1answer
28 views

ios NSURLConnection asychronous request, displaying data in a UITableView

this question might sound silly but I cant seem to get the idea of asynchronous downloading, parsing and displaying the data. There are a lot of articles about asynchronous parsing and I have read a ...
7
votes
4answers
7k views

Catch an exception thrown by an async method

Using the async ctp from Microsoft for .NET, is it possible to catch an exception thrown by an async method in the calling method? public async void Foo() { var x = await DoSomethingAsync(); ...
0
votes
0answers
18 views

Random TimeOuts in vb.NET Thread Code (Task Factory)

I am working with a big application. It starts at the beggining of the form declaring and starting some threads: Thread1 = New Thread(AddressOf Thread1Sub) Thread1.Start() Thread2= ...
0
votes
0answers
8 views

Receive data buffers from HTTP asynchronous request

I've started to develop some stuff in C#, and now I need to listen and receive data that's being constantly sent from a HTTP server in my local machine. The goal is to get the connection with this ...
3
votes
2answers
170 views

How to detect empty epoll set

I'm learning to use epoll, and I wrote the following example #include <assert.h> #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include ...
0
votes
3answers
40 views

how to start/stop a Timer/AsyncTask in an android view

I need a job which is to be executed at a fixed time(for example every 1 seconds). I know I can implement this by the Timer or the AsyncTask. However I have to start the job when the view is ...
0
votes
0answers
22 views

Speeding up page with D3.js and vector objects

I have been racking my head to find a way to speed up the load time of this page, its not slow by any means but my initial thought is there has to be a way to get it faster or more async so the page ...
1
vote
1answer
44 views

Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?

I have several calculator classes that perform custom calculations. Historically methods of these classes have been launched via BackgroundWorker, because they were lengthy, run-time wise. Recently I ...
0
votes
4answers
53 views

New to async programming. How do I get things to happen in proper sequence across different objects?

I'm trying to refactor my program. I had made it work by making the AJAX calls synchronous, but now I'd like to do it the proper way. What's happening is that headline is instantiated with a new ...
0
votes
1answer
24 views

vb.net server - multiple clients continually processing different information

I am looking for help with writing a server application to serve an updating text stream to clients. My requirements are as follows: I need to be able to have a client request information on server ...
1
vote
1answer
30 views

How to create a waiting line in coffeescript or javascript ? or another approach

What my app do: Streams information asynchronously (It's a comet style app and im using Faye). Appending to a carrousel. Displaying it for 7 secs. Repeating the step (2). What my problem is: If i ...
0
votes
0answers
16 views

How to handle waiting for asynchronous unavoidable load time in background page in chrome extensions?

I have an extension that loads a big database in the background page. The extension cannot do anything until that have completed. Problem is this extension is a newtab replacement which means ...
1
vote
1answer
47 views

Task.WaitAll not waiting on other async methods

I'm asynchronously retrieving some rss articles with my Portable Class Library that uses the Microsoft.Bcl library (which doesn't have Task.WhenAll). Each article has a url to rss comments that I ...
13
votes
4answers
14k 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?
39
votes
4answers
2k 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 ...
27
votes
8answers
17k views
-1
votes
3answers
42 views

How to avoid android.os.NetworkOnMainThreadException [duplicate]

I am trying to send a picture to my local web server from my android phone. Once it connects to the web server I get the following: android.os.NetworkOnMainThreadException I think that the solution ...
1
vote
4answers
52 views

not able to access global variabe while using google maps api js

In the below code, I am not able to access the value of variable distances . I think that is because of asynchronous call directionsService.route. How can I get the value variable distances ? var ...
-4
votes
0answers
37 views

Run a Code synchronously in javascript

I am trying to generate some html in both the outer and inner loop. Actually the outer loop should generate (ul)tags and the inner loop will generate (li) tags. But due to asynchronous nature of js, ...
0
votes
1answer
27 views

Convert java thread-based tcp socket server to javascript async tcp socket server

I am looking to convert a java thread-based tcp socket server to javascript-based (preferably nodejs) async tcp socket server. It's my app and now learning to nodejs. Thought it would be a good ...
0
votes
0answers
25 views

Spring message-based RPC vs Asynchronous RPC with Lingo

I am trying to integrate JMS with spring.I have come to know that there are two option 1.Spring message-based RPC(JmsInvokerServiceExporterand JmsInvokerProxyFactoryBean). 2.Asynchronous RPC with ...
0
votes
2answers
34 views

Asynchronously add views to fragment in Android

I trying to create a fragment which at the beginning will show a ProgressBar, other thread will call a function which will bring some information (the information brought from remote server - takes ...
0
votes
0answers
19 views

SocketAsync, can't reconnect to server

I have a problem with my Socketasync application, I have a server, and a client (the code below), everything with the communication works great except when the server application is closed, then the ...
1
vote
4answers
57 views

Ref in async Task

How I can to pass a reference as a parameter to Async method in Windows Store App ? I'm looking for something like this: var a = DoThis(ref obj.value); public async Task DoThis(ref int value) { ...
0
votes
1answer
19 views

The page must inherit from DelvingWare.AsyncControls.AsyncPage

using DelvingWare.AsyncControls; public partial class buildCheck : System.Web.UI.Page { } Presently ,The above code , I need inherit the "DelvingWare.AsyncControls.AsyncPage" ...
-1
votes
2answers
49 views

parsing the array of json objects embedded in the url

However i keep getting these exceptions. I have also posted my logcat below. I am new to android so i need help. The url consists of an array of json objects. [ { "codeField":"COMPSCI 101", ...
0
votes
0answers
43 views

Method inside dispatcher called twice for an IAsyncAction.Completed handler

Problem description IAsyncAction myCheck = null; myCheck = ThreadPool.RunAsync( (IAsyncAction source) => { MyFirstTask(); }); myCheck.Completed = new ...
0
votes
2answers
42 views

multiple async mongo request in nodejs

How to write multiple queries in a row? Like a Space.findOne({ _id: id }, function(err, space) { User.findOne({ user_id: userid }, function(err, user) { res.json({ space: space, user: ...
1
vote
2answers
56 views

Asynchronous playback of several <img> tags with same animated GIF

I have a lot of <img> tags on one HTML page some of whom share the same animated GIF file. The src URL is set dynamically by JavaScript but with my code the same characters are either played all ...
-2
votes
0answers
27 views

Transaction (Process ID) was deadlocked on resources with another process and has been chosen as the deadlock victim. How to fix the deadlock?

I am calling and insert database tables in async calls with background worker class. I am getting deadlocks like below.But as my per my knowledge, sql will not go for deadlock till 2000 simulatinious ...
0
votes
1answer
24 views

Node.JS / Javscript Async Call back issue

I am trying to accomplish the following (should be quite basic and I must be missing something trivial): 1. Call a function with string that has a select statement 2. Wait until the DB call completes ...
1
vote
2answers
32 views

how to recieve line from a html page to twistd web server

I just want to ask that if it is possible to to receive chat from an HTML page to twisted web server and PUSH it on to another HTML page asynchronously. I just want someone to point out the way to do ...
0
votes
1answer
35 views

Variable overwritten when using asynchronous AJAX (using jQuery) request to load data

I have the following code that loads information about a users payments a month in advance of when it's needed. The function works when I wait for each month to load however it fails when multiple ...
2
votes
1answer
63 views

Twisted / perform asynchronous http requests

I have a twisted reactor listening for incoming data. I have a second reactor performing http requests in certain time intervals sending the results to the first reactor. Both run fine. Now I would ...

1 2 3 4 5 156