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 ...
0
votes
2answers
31 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 ...
0
votes
2answers
72 views

How to callback function from another file in nodejs?

Im starting to work with async programming, Im making a nodejs application, I´ve slice the code in some files: index.js, ctlUser.js, DAO.js etc... .. Index.js is the main file it requires ctlUser and ...
2
votes
2answers
92 views

Is Javascript synchronous(blocking) or Asynchronous(nonblocking) by default

I am trying to grasp on Javascript Asynchronous functions and callbacks. I got stuck on the concept of callback functions, where I am reading on some places: they are use to have sequential execution ...
0
votes
1answer
38 views

How the Node.js async eachLimit works in this situation?

I wrote a little async script to batch insert a lot of JSON files into a MongoDB sharded cluster. This is my first time with this module (and I'm still learning Node.js). I don't know if I'm doing it ...
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 } ...
1
vote
4answers
54 views

JavaScript async callback and scope

Consider the following example: var cb = function (t) { console.log('callback -->' + t); }; for(var i = 0; i<3; i++) { console.log(i); setTimeout(function(){ cb(i); ...
0
votes
1answer
27 views

Detecting async function calls completion in silverlight

Say,there is a requirement that a customer object is loaded from the db to a silverlight application, so that the customer details are shown in the UI. We need to detect if the user is changing any ...
0
votes
1answer
53 views

Why is my callback function called last?

I'm really stuck with this at the moment, see the code below: var getImageFromUrl = function(url, callback) { var img = new Image, data, ret={data: null, pending: true}; img.onError = function() { ...
1
vote
3answers
69 views

GWT RPC AsynCallback skips onSucces and onFail methods

I've try to code a GWT application and I need to use RPC to get results from server side. I followed the GWT RPC tutorial and end up with some goods. But when I debug my program, I saw that my program ...
0
votes
1answer
36 views

Passing object to Callback in Javascript

I'm trying to write a function with a callback -- I want to create an object, and then access that data in the callback. Here is my function so far: var getModelInfo = function(model, callback) { ...
2
votes
1answer
96 views

Using dust.js (asynchronous) in synchronous callbacks

I'm trying to pick a JS template engine for an upcoming project and one of my favorites seems to be dust.js. I like the idea that it's asynchronous, i.e. I just stage some template for rendering and ...
0
votes
1answer
60 views

set callback function to return value in javascript

Here is my code: function render(){ var el; setTimeout(function(){ func(); },1000); return el; } function func(){ //do something here; } setTimeout is async, so el will ...
0
votes
2answers
76 views

Javascript callback functions returning empty object

I can't seem to get this callback function right. dispatch: function (query, callback) { var result = new Object() ; var qd = new queryDispatcher.init(); var google = qd.callGoogle(query, ...
0
votes
2answers
61 views

Understanding callbacks with http.get in node

New node programmer here and I'm having a rough time understanding how to return the contents of a http request from a function due to the async nature of node. Here is a stripped down version of my ...
-1
votes
1answer
49 views

Asyncjs : Bypass a function in a waterfall chain

I want to jump a function from a chain of waterfall functions with asyncjs in nodejs. My code look like this : async.waterfall([ function(next){ if(myBool){ next(null); ...
0
votes
1answer
43 views

How to build an array when some values are retrieved asynchronosly through callbacks?

I am attempting to build a JavaScript function that will return an array of destinations based on some user input. Some of the input can be put directly into the array (such as when the user enters an ...
1
vote
3answers
85 views

jquery click function with slow ajax in it

I have a click handler bound to a list of radio buttons. When someone clicks any of these buttons, an ajax request is performed, which goes away to a server, and comes back with some data, which is ...
0
votes
1answer
41 views

Having a loading message when looping through a set of database queries (mySQL/sqLite)

I wish to show a loading message while querying info from a database in sqLite. Here's what I have so far: $.mobile.showPageLoadingMsg("a", "Updating Distributor List...", true); $.ajax({ ...
3
votes
2answers
199 views

Node.js Api calls in an Async loop

I'm having difficulty making multiple api calls and getting the returned results in the right place. This what I'm trying to achieve: Two loops, nested. The outer loop loops over a complex json ...
-2
votes
1answer
88 views

IAsyncResult out string always null

My string message ist always null, also my Result AsyncState ist null. Someone see the mistake? private void create_Incident(string computer_idn, string swidn_choice, ...
-1
votes
1answer
70 views

Callback funtion in C# [closed]

I have to call a api (SOAP) with a callback (asynchron), result..etc. The methods I have to use: public IAsyncResult BeginInsertIncident( string userName, string password, string MsgId, string ...
0
votes
2answers
151 views

How to display loading message while waiting for multiple asynchronous JSONP callbacks?

I am building a client-side application where I send requests to YouTube API, Instagram API, Tumblr API. When those requests are processed, an appropriate callback function is executed. The problem ...
1
vote
2answers
39 views

conditionally executing a callback

What's the best way to solve the following control flow niggle: I only want to call getSomeOtherData if someData is equal to some value / passes some conditional test In both cases I always want to ...
-1
votes
1answer
72 views

need to wait for asynchronous api callback before I return from method in Java

import java.util.concurrent.CountDownLatch; import quickfix.Initiator; public class UserSession { private final CountDownLatch latch = new CountDownLatch(1); public String await() { ...
0
votes
2answers
114 views

node.js execute function after 'n' async callback are executed

I can't get how can I execute a callback after 'n' async functions are executed, example: var after4AsyncOperation = function(){ //do something... } process.nextTick(function(){ //do stuff ...
0
votes
1answer
143 views

Working with google.maps.Geocoder(). Asynchronous callback

I've been trying to geocode an address into LatLng coordinates, but I'm having a lot of difficulty doing so. I know geocode() is an asynchronous function, and I have been toying with callbacks with no ...
0
votes
2answers
49 views

A more elegant way to use the result of multiple callbacks in a function?

I'm still somewhat new to asynchronous programming and I've been wondering if there's a better way to accomplish what I'm trying to do. exports.content = function(req, res){ OPID = req.params.id; ...
0
votes
1answer
50 views

Asynchronous function call inside tree loader extension function

I have a function which will load children of a Node. Internally it calls a WCF async service to load. The signature is as follows. public void AddChildElements(Node parentElement, ...
0
votes
1answer
138 views

How to render a page only after all web-scraping requests are completed in Node.js?

I am making anywhere between 1 to 10 web requests using jsdom (web-scraping library for Node.js). It goes something like this: app.get('/results', function(req, res) { jsdom.env( ...
2
votes
1answer
68 views

What is the proper way to call 'render' after all async executions in controller?

So here we have some application based on CompoundJS framework and some controller on it: load('application'); action('index', function () { someMethodWithAsyncCallback({}, function () { ...
1
vote
1answer
106 views

Is it OK to use some synchronous code in nodejs

I understand that for I/O operations(ie database queries, web requests and disk access) you must use callbacks like this fs = require('fs') fs.readFile('test.txt', 'utf8', function (err,data) { if ...
0
votes
1answer
89 views

Trying to get asynchronous functions with arguments and returns to work

I have been trying to get a function to work asynchronously with a GUI window, and having very limited success. The code below is my function, XXX, with a delegate and Callback - to allow stopping ...
1
vote
2answers
188 views

Asynchronous Function in C++

I have a class object which is acting as a server. It receives request from anywhere and pushes the request in its request queue (Producer). Now there is a consumer thread running which is popping the ...
3
votes
1answer
414 views

Node Grunt Asynchronous Task in Loop with Closure not Working

Thanks in advance for taking a look at this. I've got an async task within a loop that's not working. I've made sure to: Wrap my looping variable "key" in a closure to avoid the classic "last value ...
0
votes
1answer
106 views

Javascript Callback Function Problems

Offering a bounty to anybody who solves. PM me first before posting solution to discuss amount. What I would like to do is have a loop checking param.result. The asynchronous call is being made to ...
0
votes
2answers
117 views

Recursion inside a callback

I have a function in a node module that is a set of three nested callbacks, and that works splendidly, giving me the linearity I need, since each nested callback depends on data from the previous ...
2
votes
2answers
140 views

crypto.pbkdf2 is asynchronous, how do I treat it as synchronous?

I'm using pbkdf2 in node.js for hashing passwords. My problem is that I'm responding to a request for authentication and I'm in the middle of authenticating if the passed credentials are correct. ...
1
vote
2answers
75 views

A lock designed for asynchronous applications

I have a class which has an inner state which can be changed. These state changes are never simple, and often consist of several asynchronous operations which occur across multiple threads, such as ...
4
votes
3answers
175 views

What can I use to replace nested async callbacks?

Lets say I wanna send an email then update the database, both actions are async. This is how I would normally write it. send_email(function(err, id){ if(err){ console.log("error"); ...
3
votes
4answers
227 views

Guaranteeing asynchronous request callback order in Javascript

In Javascript, I have two asychronous requests for data: $.getJSON('http://foo.com', fooQuery, fooSuccess(data)); $.getJSON('http://bar.com', barQuery, barSuccess(data)); and two callbacks to ...
7
votes
3answers
92 views

Which is a better way of writing callbacks?

Just by seeing what I've wrote now, I can see that one is much smaller, so in terms of code golf Option 2 is the better bet, but as far as which is cleaner, I prefer Option 1. I would really love the ...
0
votes
0answers
83 views

How to get global queue callbacks in python redis

I am using redis as a queue and I have few consuming units which are consuming the queue(lets say queuename is 'items'). Is there a way in redis's python library by which I can register callbacks ...
0
votes
1answer
132 views

Javascript and Girls' Callbacks — Problems with Both

I've just ventured into the wonderful world of server-side javascript and am still getting the hang of asynchronous processing. After messing around with a node project I came to the realization that ...
1
vote
1answer
417 views

window.open in jquery ajax success callback blocks subsequent ajax calls

I have an AJAX call setting some session variables on a server. When the session variables are set, in the success callback, I'm opening a new window to the appropriate page. ...
2
votes
1answer
139 views

understanding node.js callback structure

I am working on really simple node.js projects to better understand its callback functioning. Suppose I have a login "system" like this one here: if( req.query["username"] == "john" && ...
0
votes
1answer
467 views

node.js async waterfall module callbacks

I have my node.js code like this async.waterfall([ function(callback){ category = [{"id":1,"name":xxx},{"id":2,"name":yyy}]; callback(null,category); }, ...
0
votes
1answer
59 views

Array to .when() and callback when scripts are loaded in DOM

I am working on asynchronous calls with $.getScript which will load the scripts I need for specific pages. I grab the scripts via an AJAX call to get the scripts I need and then load them in order ...
0
votes
1answer
71 views

how to use defer and deferred.resolve in the same function where I used Q.all?

The requirement is that I used Q.js feature called Q.all inside a javascript function that needs to return a result provided the Q.all finishes successfully. My objective is to return an object with ...
0
votes
1answer
124 views

C# - Asynchronous Callback - WP7 - Silverlight - Storing data

I have an Asynchronous callback function for a silverlight/WP7 application that looks like the following. public static my_function() { PostClient conn = new PostClient(POST); ...

1 2 3 4 5