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
1answer
24 views

Access violation using FtpFindFirstFile unicode version in async mode

Let's say I have very simple little code sample which uses async WinInet: #include "stdafx.h" #include "WinInet.h" #pragma comment(lib, "wininet.lib") DWORD LatestResult = 0; HANDLE MayContinue = 0; ...
0
votes
2answers
63 views

How to use cancellationToken in MVC3?

I am newbie to MVC3. In my project MVC3, i'm using threading for import excel sheet to Database and it works perfectly. I have a doubt on the following, 1) How to stop the thread using ...
1
vote
1answer
36 views

Call intern asyn callback more than once

Is it possible to specify the circumstances the asyn callback should be called in intern? Let's say we have a test testing a method which performs several XHR Requests in a row. Specificaly, I'm ...
1
vote
1answer
73 views

PHP asynchronous tasks - sending results to browser when ready

In PHP, I want to run several independent tasks in parallel. Each task produces a result that I want to send back to the visitor's browser as the results are ready. The idea is to use load a page ...
2
votes
2answers
62 views

How do async tests work in intern?

How do asynchronous tests work in Intern testing framework? I have tried to get them run exactly as in the example, but the async test passes immediately without waiting for the callback to be run. ...
2
votes
1answer
65 views

Is it okay to not await async method call?

I have an application which will upload files. I don't want my application to halt during the file upload, so I want to do the task asynchronously. I have something like this: class Program { ...
0
votes
1answer
27 views

mongodb allanbank async driver callback being called twice

I have a simple callback bound to a findAsync call. Every few requests I observe a failure even though the data in the database is static. Some quick debugging shows that my callback is ALWAYS being ...
0
votes
1answer
60 views

How to implement “no wait” controller call for an API?

I have a set of MVC3 controller methods that i call from my JavaScript clients that do not require returning any data. It's purely one way push of tiny data-set for further processing. Each controller ...
2
votes
1answer
42 views

How would I extend WebAPI to support returning controller action results via an HTTP callback?

I'm trying to extend WebAPI to support returning a response through an HTTP callback. Workflow: WebAPI receives a HTTP request with a callback URL. WebAPI handles the URL normally and if the ...
2
votes
2answers
33 views

event handler that knows the event name

I have a socket.io server that generates many events, and I want to catch all of them and print a similar message. Right now, I do this: for (var event in {eventA: 1, eventB: 1, eventC: 1}) { ...
3
votes
5answers
95 views

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

I've been reading nodebegginer And I came across the following two pieces of code. The first one: var result = database.query("SELECT * FROM hugetable"); console.log("Hello World"); The ...
0
votes
1answer
90 views

Problems of executing a block of code asynchronously in play framework

I am using amazon s3 to upload photos as my service. According to http://www.playframework.com/documentation/2.1.1/ThreadPools , the code must be blocking code. "when your code may block include: ...
0
votes
3answers
30 views

Queue to manage function calls

Hey guys I am stuck in a critical problem. I created a Dashboard of application. The data which i am displaying on Dashboard is created on the basis of my business logic. There are various ...
0
votes
1answer
54 views

How to send soap messages asynchronously from java

The business situation is that we want our application to notify a third party every once in a while on the occurrence of a certain event in our application, sending them some data. We could say that ...
1
vote
2answers
87 views

Javascript execution code order

I am giving my first steps in Javascript and trying to understand how it works. I've come to a problem of execution order of the code. var Parsed = [[]] var txtFile = new XMLHttpRequest(); ...
0
votes
2answers
58 views

Multiple Threads Using GCD while Fetching Photos

I have to fetch contacts from the Address Book and show photo beside each if found in a UITableView. I fetch all contacts using ABContactsHelper library and then asynchronously fetch photos for ...
0
votes
1answer
39 views

how to listen for submit event.

Hi i want to know how to tell if a event was fire within 2.5 seconds. here is external function written by some other developer. function validateAndSubmit() { if ...
0
votes
1answer
32 views

Why is there no asyncContext.cancel()

While the Servlet 3.0 spec has request.startAsync() and asyncContext.start(), why has it not provided a asyncContext.stop() or asyncContext.cancel() to initiate necessary clean-up on the server-side ? ...
0
votes
1answer
45 views

waiting on asynchronous http requests in java

I'm using Jetty HTTP Client to make about 50 HTTP calls asynchronously. The code looks something like this: List<Address> addresses = getAddresses(); final List<String> done = ...
0
votes
1answer
28 views

HttpClient is not found in .NET 4.5

I am trying to use the new HttpClient in .NET 4.5, but Visual Studio complains that it doesn't exist. I have System.Net, but when I type System.Net.Http, it complains for that too. Am I supposed to ...
2
votes
1answer
25 views

JavaScript to Silverlight: await task based method

I'm doing some research into calling Silverlight from Javascript. I have the scriptable method working but this method needs to be async. As such, when I return a value, like a string, from the ...
1
vote
1answer
27 views

Accessing global variable and asynchronous issue

Below is some code I've just started to work on (an avatar generator experiment). I want to be able to click on a button and change the position of the canvas element, but I'm having troubles with ...
0
votes
2answers
53 views

How to avoid deadlocks on simple update statements?

I have table that holds the connection and disconnection times of the clients. ID int ClientID int BeginDate datetime EndDate datetime When a client is connected, a Session record is ...
0
votes
2answers
38 views

Best way to execute method asynchronously in Android (compact and correct)

Say I have Activity showing some content on screen. I need to execute some method (asyncMethod) asynchronously and when it is done, to update data on screen. What is the most correct and simple way to ...
1
vote
4answers
67 views

About asynchronous connection in AFNetworking : how to add the response data to NSMutable Array

im a noob and this is my first post here. I tried to load images from URL and assign it to some NSMutableArray or UIImage variable, but it failed. I knew that asynchronous things in AFNetworking has ...
0
votes
1answer
31 views

how to use a Task.Run in a static method

I want to use a Task.Run in a static method. But when i m calling the task.run in static method it gets lost. public static void TestLevel() { var UserSetting = Task.Run(async () => ...
1
vote
1answer
28 views

How to write RequireJS loader plugin with cache?

I'm writing a RequireJS loader plugin. The plugin fetches html fragments cross domain via EasyXDM. It's invoked using the loader syntax, like this: 'html!someTemplate,#fragmentSelector' Since ...
1
vote
1answer
77 views

create an asynchronous each loop in jquery

This is my each loop:- var image_obj = {}; $(".wrapper").each(function (index, data) { var dfile = this.getElementsByClassName('image')[0]; file = dfile.files[0]; if(file != null) { var fr ...
1
vote
1answer
41 views

Python threads don't work with pygobject?

Take a look at this trivial python gobject program: import threading import gobject import time def f(): while True: print "HELLO" time.sleep(1) ...
-2
votes
0answers
55 views

jquery how to tell if event has been fire

Hi i want to know how to tell if a event has been fire such as form submit. say i have a listener on a button. $("#button").click(function(event) { // check to see if any submit event is fire ...
0
votes
1answer
23 views

Grunt task to drop mongoose database

I'm trying to create a grunt task to drop a mongodb database through mongoose. The connection is hanging and I have to force quit and it is not actually dropping the database or outputting an error. ...
0
votes
1answer
32 views

Java Async I/O with NIO2: Does AsynchronousServerSocketChannel.accept give you an active AsynchronousSocketChannel

For server.accept I wrote a completion handler that has the parameters. When the handler is invoked via the accept method, does that mean the AsynchronousSocketChannel is now conneted? Or do I have ...
-2
votes
0answers
13 views

Un handled Async creating Pending Worker Process Requests [closed]

What are the issues concerning async asp.net handlers that don't complete. I have an async ashx that for some reason is not executing properly on production. I cannot reproduce it through testing.This ...
0
votes
1answer
43 views

Restsharp deserializing server side errors

Error handling RestSharp question. If i have an error in request itself, server returns another Json answer, which should be desealized to another POCO object. Where i can handle this? For example, ...
0
votes
1answer
57 views

The View won't show up until async function's callback is finished

What I want to do is: I have a web page which is a ASP.NET MVC page; I want to sent a notification email background, after someone post information through my page; The notification email is not ...
0
votes
0answers
31 views

Is it possible to do an asynchrone file upload with RestSharp?

I have tried to upload a file asynchronously with RestSharp. Unfortunately I can't get it to work. If I use client.Execute() instead of client.ExecuteAsync() it works. Why? Is it a Bug? Is it a ...
3
votes
2answers
44 views

Spring @Async with Future

I am new to java.util.concurrent.Future and have some questions. If I call a service using Future how do I know what element was used to call the service? Here is an example: For each id I am using ...
0
votes
1answer
53 views

WCF Async call that return void and is OneWay

I use WCF to async communicate between 2 processes. till now I implemented the IAsyncResult pattern, and did it by having 3 methods: BeginOperation - client.BeginOperation, when service receive it ...
0
votes
1answer
29 views

Task/Action-api for JavaScript?

Is there any existing api/code for handling and chaining long-running "async" javascript functions? First of all I don't think there are any such thing as an asynch function in js right? I guess the ...
0
votes
1answer
81 views

Asynchronous web service call in flex and java

How can i access to my Asynchronous web service in java? I made this thing in Flex Builder, and it`s pretty easy: just add web service throw "Data -> Connect to Web Service -> Enter the URL of wsdl" ...
0
votes
2answers
169 views

C# WPF Application with TCP Socket and Multiple Threads

Recently, I have undertaken a project and I would like some help from the community with regards to how I can go about learning what I need to and in what order. I.e., this is less technical than ...
0
votes
1answer
49 views

How to limit the number of threads for a certain region of code?

foreach (var action in actions) { Task.Factory.StartNew(action); } But, what if I need to limit the number of actions that run in the same time? How do I do that?
0
votes
1answer
50 views

Node.js: Callback function at the end of each iteration in a for loop

In Node.js I have a function that goes through an entire list of elements and does some database calls as shown below: for(var j=0; j<elements.length; j++) { //do some database calls } ...
0
votes
1answer
20 views

Getting an infinite calling stack with this javascript

I have: var c = { typeStart: function(msg, loc) { loc.append("<p>"); this.typeLetter(msg, loc, 0); }, typeLetter: function(msg, loc, pos) { ...
1
vote
3answers
75 views

Is it possible to receive out-of-order responses with HTTP?

Sec 8.1.2.2 Pipelining says: "A server MUST send its responses to requests in the same order that the requests were received". So, I thought, if I send out multiple AJAX requests from my ...
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 ...
3
votes
2answers
237 views

Initialize AngularJS service with asynchronous data

I have an AngularJS service that I want to initialize with some asynchronous data. Something like this: myModule.service('MyService', function($http) { var myData = null; ...
3
votes
3answers
146 views

GCD async block & EXC_BAD_ACCESS

This crash is fairly rare, but it has happened often enough to convince me I'm doing it wrong. It's an API call performed using both main-thread async dispatch and barrier dispatch on a custom ...
0
votes
0answers
39 views

Asynchronous WCF service not working

I have this service: [OperationContract(AsyncPattern = true)] public IAsyncResult BeginSensorResult(string ip, string command, AsyncCallback cb, object state) { return new ...
8
votes
2answers
179 views

Is there a way to fake a synchronous XHR request?

I'm porting a pile of C++ code to Javascript using the Emscripten system. The C++ code has many calls to fopen which is a synchronous IO call. Within Emscripten, we simulate this using an XHR request ...

1 3 4 5 6 7 156