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.
0
votes
1answer
31 views
What is the TPL equivalent of a condition variable?
I'm learning the Task Parallel Library (in conjunction with C# 5.0 async/await), and I want to do something like this:
public class Foo
{
public void UnblockDoSomething()
{
DoWork();
...
2
votes
0answers
9 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):
...
0
votes
1answer
18 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
2answers
19 views
$http.transformRequest with results from an asynchronous function
I have an angular application that uses the $http service to fetch data from a remote server. Under certain circumstances I need to append a custom header value to each request, and I would like to ...
0
votes
2answers
62 views
How can I pass a parameter to a delegate callback method?
This seems really odd, so I doubt it's good practice but I'm working on an old app and I need to make some updates without totally redesigning the whole thing.
Currently, I have a UIButton which has ...
0
votes
0answers
16 views
Call WCF service asynchronously from Web API
How could I call call WCF Service asychronously from asp.net Web API.
I do not want to use asyc and await keywork with my Web API function.
Is there any other way to implement same solutions.
0
votes
1answer
30 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 ...
0
votes
0answers
12 views
How do I start an asynchronous operation in an action method, and transfer to another action to track it
I would like to start a file import on one view, triggering an Import action on my controller. Then immediately redirect to an action that displays imported data. I would then use an Ajax call to ...
0
votes
0answers
9 views
executeSql command working synchronous with cordova 2.2 but it is working Asynchronous with cordova 2.7
my application works fine with cordova 2.2 and I want to increase latest version cordova 2.7 .
But executeSql commands works begun Asynchronous in cordova 2.7.
This is the snippet:
...
1
vote
2answers
72 views
Asynchronous PHP execution
I tried to run a massive update of field values through an API and I ran into maximum execution time for my PHP script.
I divided my job into smaller tasks to run them asynchronously as smaller ...
0
votes
1answer
21 views
How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)
I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example.
I've found some info about this topic, but it ...
0
votes
1answer
26 views
Getting multiple keys using node-redis
I'm trying to get a bunch of keys from a redis instance. I'm using node-redis. I'm using a loop:
for( var i=1; i<=num; ++i ){
client.get(key + ':' + num, function (err, reply) {
...
0
votes
2answers
33 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 ...
1
vote
1answer
24 views
How to handle and display asynchronous data returned in a background thread in the iOS UI
I am new to using background threads to display data in the iOS UI.
I am now using the Parse SDK for all of my backend data management. It seems all of the Parse methods return data asynchronously ...
0
votes
0answers
13 views
Delegate execution in Unity3d using c#
I have callbacks implements in my unity3d game in such a way that they are all nested,i.e. one callback leads to another call, whose callback leads to another call and so on upto 5 times. But the last ...
0
votes
2answers
30 views
node pg callback event
Hey basicly im writing a web appliaction ,i didint like to handle evrything in app.js so i did make one script called event.js what is handle the page functions and i just do export them ,my problem ...
1
vote
1answer
32 views
Python's TCPSocket vs. Asyncore
I created a simple Project with Python. It simply a server/client app. Python is server.
I created this code for my server:
import socketserver
class MyTCPHandler(socketserver.BaseRequestHandler):
...
0
votes
1answer
30 views
How can i make Recursion Asynchronous using Async and Await Keyword?
i am getting multi-level dynamic menus from database. Currently i have called it successfully but i want to make it async.
here is my code;
protected override void ...
0
votes
0answers
26 views
Adding asynchronous JSON data to an array, coming up empty
My map and everything is displaying correctly. Only problem is that the arrays I want to populate with my position/marker data are empty. I know this has something to do with asynchronous nature of ...
0
votes
1answer
27 views
Meteor - return asynchronous function to handlebar template?
I am trying to generate a Flickr url based on a Flickr API call, and then return that result to a handlebars.js template. I am struggling to find a way around asynchronous processes.
I have tried to ...
0
votes
0answers
35 views
Python: [Help] Best use of asynchronous timer (Non Blocking Timer)
My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
4
votes
1answer
62 views
Calling asynchronous function in callback
I'm having some trouble understanding asynchronous functions. I've read the chapter in Mixu's Node Book but I still can't wrap my head around it.
Basically I want to request a ressource (using the ...
-1
votes
0answers
14 views
Authentication with DefaultAsyncHttpClient
I am having the next exception, while trying to use DefaultAsyncHttpClient and BasicAuthCache.
java.lang.ClassCastException: org.apache.http.nio.conn.scheme.AsyncSchemeRegistry cannot be cast to ...
2
votes
1answer
63 views
How wait asynchronous method in a thread?
I need that Join method is called when Download.file method have finished.
I tried to add await keyword but it didn't work
Thread myThread = new Thread(new ThreadStart(()=> await ...
1
vote
0answers
22 views
Out of memory Exception during base64 encoding in android?
I have to upload four images from android to server using multipart entity.I am sending images by decoding it with base64.And it shows out of memory exception.I have posted the code below.
Please ...
1
vote
1answer
146 views
What Should I be using here? Threading? Async?
I am not sure what to use in this scenario.
I have an asp.net web api method that basically does this
Finds points of interests from foursquare near user.
Uses the foursquare locations to do ...
1
vote
1answer
53 views
What Constitutes Asynchronous JavaScript?
One of the stand-out features of JavaScript (or detriment, depending on your views on the subject) is it's asynchronous nature. I understand how the code flow works, but I'm not 100% on what makes ...
0
votes
0answers
23 views
How to add callback function for chart.exportChart() in highcharts / highstock
I want to add chart.showLoading('Retriving image from server ...'); when exporting image using highcharts/highstock. After the images is generated from server, I'd like to call chart.hideLoading();
...
0
votes
0answers
21 views
Mixed polling & event-driven serial protocol implementation
I'm working on a Java library (for Android, but that's of little relevance) that communicates with a hardware device using a serial port, via a protocol that mixes synchronous queries (polling) and ...
0
votes
0answers
15 views
Facebook: async Process?
I developed a process where I raise comments, photos and direct messages to a page, to grasp a new object invokes a method on a server (vb.net) and recorded in the database. Fb calls are made by js.
...
0
votes
1answer
29 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
0answers
25 views
GWT Asynchronouscallback timeout issue: Always going in OnFailure()
I am new to GWT. I have written a piece of code which makes asynchronous calls to the server. The server side code is running fine as seen through the logs. But on the client side I am getting a ...
0
votes
0answers
26 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
21 views
asp.net mvc running async thread
I'm running an async thread with the use of Task.Factory.StartNew(() to generate sitemaps.
My problem is that when I call my method:
Task.Factory.StartNew(() => generator.CreateSiteMapForSite
...
3
votes
1answer
75 views
Python equivalent of Perl's HTTP::Async->next_response
I'm looking for a way to do the equivalent of Perl's HTTP::Async module's next_response method
The HTTP::Async module doesn't spawn any background threads, nor does it use any callbacks. Instead, ...
1
vote
0answers
19 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 ...
2
votes
0answers
27 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. ...
0
votes
2answers
28 views
show ajax loading indicator when using synchronous ajax with JSON
I'm using ajax with jQuery on my site and need to show a progress / loading indicator.
My dilemna is this:
Synchronous AJAX locks the browser, so I cant do anything (e.g. show a loading indicator) ...
0
votes
2answers
38 views
Ember Ajax Calls running in serial
Setup:
blah is my ember app
find essentially calls Ember.$.ajax(url, params, method)
the find method isn't a blocking call
Neither of the routes nor controllers have dependencies (needs) on each ...
0
votes
1answer
56 views
Why my List is null after being assigned in a function call?
This might be a silly question. But when I modified one example from Live SDK example, got a weird problem.
I was thinking the root cause is async function GetAll() was used synchronously.
Below is ...
0
votes
0answers
35 views
Best approach to asynchronously and repeatedly make 100s of webrequests?
I have a collection of devices on a LAN; there will be ~500 of them.
They all serve up information via http, along the lines of http://devicename.local/status.json (the JSON part is irrelevant to my ...
1
vote
2answers
64 views
Node.js async to sync
How can I make this work
var asyncToSync = syncFunc();
function syncFunc() {
var sync = true;
var data = null;
query(params, function(result){
data = result;
sync = ...
0
votes
3answers
38 views
Data Interface for Async access
My standard layout for any data access involves a nice simple interface.
public interface IUserDao
{
User GetUser(int userId);
}
I can then switch in a different implementation of ...
0
votes
1answer
32 views
Async NSURLConnection sometimes not reaching server side
I have read all similar problems, but none of the answers worked for me. So let me explain to you what is my issue:
I am using NSURLConnection to send async GET request to my backend side. I use to ...
1
vote
2answers
28 views
DbConnection.Open() works but dbConnection.OpenAsync() doesn't
This is a tough one. Using the exact same query string, the exact same following code:
using (var db = new SqlConnection(queryString))
{
await db.OpenAsync();
var results = await ...
0
votes
0answers
9 views
Asynchronous requests rails apache/phusionpassenger
I've implemented a controller method which makes a couple of requests to an third parry API, which is quite slow. Further I've utilized one of Thin's asynchronous features:
# This informs thin that ...
2
votes
2answers
28 views
Best way to wait to download file from server which is not yet created?
I make a request to download a file from server.
The thing is the file is being generated on the server-side and the generation is asynchronous.
Initially I did something like
try {
...
0
votes
1answer
35 views
Synchronous controller with Task.Factory.StartNew versus Asynchronous controller in MVC 4 versus Service Broker Activation
I have a project running in MVC 4 on a .Net 4.0 VS2010 environment. I need to have a long running sql task handled without making the user wait on the front end for that long.
The MVC 4 web ...
2
votes
0answers
22 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 ...
0
votes
2answers
35 views
Solution for downloading hundreds of files asynchronously
I have an app in which the user may need to download up to 760 files, totaling around 350MB. It is not possible to zip these files, they must be downloaded as loose files!
I'm currently using Android ...



