The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

Async fluent javascript (node) interface (using deferreds)

What is the best way to build fluent interface in Javascript (node.js) with obj.function1().function2().function3(); where functions are asynchronous methods? There is a module called chainsaw, ...
1
vote
1answer
39 views

Are there any javascript AMD frameworks that use deferreds?

It seems like deferreds are the very useful to keep code inline, are there any amd frameworks that use them primarily? For instance: require(['a','b','c'], function(a,b,c){ }); can be var dfda = ...
0
votes
1answer
31 views

Handling promises when dealing with event listeners

Currently I'm using promises in an AS3 project but this is also relative to JS projects. Say I have this code, in AS3: public function getFeed():Promise { var request:URLRequest = new ...
0
votes
0answers
31 views

Why Meteor.http.call doesn't work on the server; Or how to use defered on the Server

this is not the question but already the answer. I ran a Defered Object (with Q.defer()) in my Meteor Method on the Server and tried to make Meteor.http.get(..) call in the then() callback. And the ...
0
votes
1answer
98 views

AngularJS chaining http promises $q in a service

i have problems when it comes to $http promises in angularjs. i am doing this in my service: (the getSomething function should chain two promises) the second function uses a external callback ...
1
vote
1answer
59 views

It is posible to have implicit kind in a fortran procedure

Taking a procedure such as function c(a,b) integer,parameter :: dp=kind(2.0e0) real(kind=dp),intent(in) :: a,b real(kind=dp) :: c c=a+b end function Is there a way to ...
1
vote
3answers
80 views

Chain ajax and execute it in sequence. Jquery Deferred

I have 3 processes that needs ajax to complete. But it is asynchronous and it fails to do what I wanted to do.. Lets say: function a(param1, param2) { $.post(..., function(result){ ...
-1
votes
2answers
57 views

Chained promises not passing on rejection

I am have a problem understanding why rejections are not passed on through a promise chain and I am hoping someone will be able to help me understand why. To me, attaching functionality to a chain of ...
1
vote
2answers
59 views

Looping and Chaining Ajax Calls using deferred

I've seen many questions about this but nothing seems to give the right answer for my case. I've seen also answers that uses .pipe but I'm looking for an answer that uses .then. Okay. I need to do 3 ...
0
votes
2answers
45 views

Conditionals on a chained deferred in jquery

Let say I chained the $.Deferred like this. $.each(data, function(k, v) { promise.then(function() { return $.post(...); }).then(function(data) { if(data)... // here is the ...
0
votes
2answers
60 views

Chaining more than two tasks using deferred and can this be use for loops?

I am getting used to $.Deferred just now, and it happens that I needed to chain three tasks using $.Deferred - then. I created a function: function processA(param1, param2) { log = ...
3
votes
2answers
61 views

jQuery deferred: cancel progress

Is there a way to cancel a deferred callback queue in progress? I have an arbitrary amount of ajax calls. I'd like to stop further ajax requests when data of success returns specific marker: ...
0
votes
3answers
81 views

Deferrable check constraint in PostgreSQL

I have function checking mandatory participation as follows: CREATE FUNCTION member_in_has_address() RETURNS BOOLEAN AS $$ BEGIN RETURN EXISTS (SELECT * FROM address a, member_details b ...
0
votes
0answers
31 views

jQuery's Deferred callback execution sequence

jQuery's Deferred/promise has two outcomes: resolved and rejected. You can attach callbacks to the Deferred which are associated with either state. The conditions for attachment are done ...
0
votes
1answer
47 views

Run a function after an Ajax call has completed

There is something happening that I don't know why is it happening. I have this 3 functions: app.progress(); app.success(); app.normal(); All three change a status block in my application. And I ...
0
votes
0answers
42 views

a simple function between deferred functions

Let's say I want to Login and Logout by clearing the cookies with this function clearCookies() { ... } function login(username,password) { $.post(...).then(function(result){ if(result ...
0
votes
0answers
27 views

WiX Custom shortcuts in a multi-instance install

I have to create a simple shortcut on the desktop and in start up menu that's proving to be quite complicated. I have a multi-instance install (with up to 25 instances) which installs a new instance ...
1
vote
1answer
284 views

AngularJS defer error: Argument 'fn' is not a function, got Object

I'm attempting to make my app gather the data before changing the route, as shown on many a video from John Lindquist: ...
0
votes
1answer
54 views

Execute a couple of js functions in order when some of the function hava a couple of ajax calls

I'm trying to create a set of function (like App object below) that accepts preInit, Init, Load functions and executes them in order. For example: var formOperation = App.preInit(function(){ //Some ...
4
votes
2answers
62 views

Custom JQuery deferred handler

not sure if this is possible but I'll give it a go. I've got a deferred function that makes a call of to the server to either create or update and object. for example: var createOrUpdate = ...
0
votes
2answers
84 views

worklight 5.0.6 JsonRestStore, use of Promises

This was originally a question about the Worklight documentation, it transpires that my real question is about JQuery's Deferred/Promise API and the promise.then() function. Context: The ...
1
vote
1answer
72 views

How to always run some code when a promise is fulfilled in Angular.js

In my Angular.js application, I'm running some asynchronous operation. Before it starts I cover the application with a modal div, then once the operation is complete, I need to remove the div, whether ...
4
votes
2answers
96 views

How do I chain three asynchronous calls using jQuery promises?

I have three HTTP calls that need I need to make in a synchronous manner and how do I pass data from one call to the other? function first() { ajax() } function second() { ajax() } function ...
0
votes
1answer
22 views

jQuery: get the resolve from a $.Deferred contained in a function

If I have a $.Deferred with several chained promises in a function, and I call that function, how could I know when that Deferred is resolved ? For instance : http://jsfiddle.net/5AWK4/ ...
1
vote
1answer
97 views

Using jquery deferred to sync animation and ajax

I'm trying to get my head around the whole deferred concept and I'm trying to use it to synchronize a fadeIn/fadeOut animation together with an Ajax call. Basically I'm switching content on page ...
1
vote
4answers
124 views

Returning a value from a bit complex javascript function back to silverlight user control

I have a silverlight user control where I have a textbox and a button. There can be multiple of these user controls within this silverlight page. When button is clicked, I want to fire up a ...
1
vote
2answers
63 views

jQuery Deferred should work bot doesn't

I have a spotify app and want to wait for a loop to finish. But it only works after reloading my app once. function matchRecommendations(result) { var deferreds = new Array(); for ( var i = 0; i < ...
0
votes
1answer
75 views

In Deferred Rendering would it be practical to replace the texture buffers with a material and UV buffer?

I tried putting all I could into the question but here's the flesh of it, Would it be practical to make a deferred renderer which instead of having a Diffuse / Specular Buffer it had a Material / UV ...
6
votes
1answer
258 views

timing issues with jquery deferred

This question is carefully distilled version of not asynchronous function executed as jQuery Deferred. We have 2 jsfiddles: http://jsfiddle.net/XSDVX/1/ - here the progress event is not fired, ...
9
votes
0answers
687 views

not asynchronous function executed as jQuery Deferred

Lets say I want to process some tasks in the synchronous manner, so I have this function: function executePromiseQueueSync(queue){ var seed = $.Deferred(), finalPromise; finalPromise ...
2
votes
2answers
113 views

AngularJS Handle different error codes in different places

I have a service that contains a generic call to $http that all ajax calls uses. Here I have "centralized" error handling where the status codes results in redirects. "FieldsSync" service: return ...
0
votes
2answers
46 views

sending requests for images synchronously with jquery

I am having a page where I get feed from youtube and then display this on this page. There are 3 rows each of 4 images each corresponding to youtube videos. I get these image links from youtube feed ...
2
votes
1answer
51 views

What's the equivalent of Deferred for repeated events?

A Deferred is a pretty wonderful abstraction for a deferred task. I'd like to set something up that is equally elegant for repeated events, e.g. my protocol receives a message and I want different ...
1
vote
2answers
139 views

How come Q deferreds are so slow on Node.js?

So I created this simple test server in Node.js Whenever I do a direct response, I get 2200 requests/second (fast!). When I only wrap a simple Q deferred around it, it drops to 580 requests/second (4 ...
3
votes
1answer
750 views

Promises in AngularJS and where to use them?

I saw some examples of Facebook Login services that were using promises to access FB Graph API Example #1: this.api = function(item) { var deferred = $q.defer(); if (item) { ...
2
votes
1answer
63 views

Wait for an ajax to display result

I'm having to trouble to achieve the following task. I have three functions function f1(param1) { var d = $.deferred(); // ajax call with data param1 d.resolve(res0, res1); return ...
4
votes
2answers
87 views

Deferred with jQuery - when() with getJSON() callbacks

I'm trying to understand when function and deferred objects in jQuery. $.when($.getJSON('/echo/json', function () { console.log('sucess'); }, function () { console.log('error'); ...
0
votes
2answers
75 views

nodejs XHR calls stop after around 50 calls

I'm using the XHR nodejs module to do a lot of ajax calls (around a 100 now). I do this async using deferred. This works really well until the amount of requests passes somewhere around the 40 to 50 ...
3
votes
2answers
112 views

How to avoid an implicit “return” in coffeescript in conditional expressions?

I am implementing a function that has deferred value to return and within the function I have many nested conditional expressions: e.g.: deferred = Q.defer() FS.readFile("foo.txt", "utf-8", (error, ...
0
votes
1answer
25 views

deferred include in make

I want to include another makefile after running a particular command because the first command generates that makefile. I tried this debug2: cd bench/${BENCH}; verilator --cc top.v include ...
2
votes
0answers
164 views

JQuery Ajax call always hitting error with status code 0

I have a fairly complicated set of scripts that works most of the time. What I want to do is make AJAX requests and then do something if I get a 401 error. When they get the 401, I send them to ...
1
vote
2answers
47 views

Is there something like monitor for deferreds (Q) in node.js?

I want see all the unresolved states (if possible all the log of deferreds: init, unresolved, resolved/rejected states). Is there any mechanism for it? Something like: Q.getAllDeferreds(), or ...
0
votes
1answer
45 views

jQuery - Is there a way to defer running a function from a plug-in already bound

We wrote a generic jQuery action that is bound to a select list of countries. It is bound to the country select; when it is changed, a call to the server is made to get the states ... $('#' + ...
1
vote
2answers
56 views

What is a function executed by setTimeout called?

I currently use the following function to queue a function call in the event loop: Function.prototype.async = function () { setTimeout.bind(null, this, 0).apply(null, arguments); }; This allows ...
0
votes
1answer
55 views

What is faster event-based or deferred-based handling?

What is faster: Event.once('some_event', function() { // wait until an event fired from somewhere defer.resolve('resolved') }) ... // somewhere else Event.emit('some_event') or smth.like: defer ...
0
votes
1answer
76 views

How to construct an array of jquery promises?

Let's say I have an async function returning a promise. I would like to chain a lot of these functions, each one with different arguments. Function that will execute this array looks like this: ...
0
votes
1answer
43 views

Callback function inside Deferred objects

I'm trying to follow some javascript lessons where there is an implementation of Deferred. This is the core of the code getData = function (options) { return $.Deferred(function (def) { var ...
2
votes
1answer
46 views

jQuery $.when doesn't seem to return a list of results

According to the jQuery docs for $.when, it will return a new deferred (actually a promise) that resolves with the list of the results from the passed deferreds in the case that all the deferreds ...
0
votes
1answer
100 views

Calling ajax as deferred promise and receiving errors

I'm trying to get the following code to work, but I'm obviously missunderstanding how $.Deferred works. Please could somebody help. The idea is, call GetParameters, process result, call GetStats, ...
0
votes
1answer
90 views

Sending data between jquery deferred objects

I'm trying to grasp deferred objects in jquery but keep running in trouble. Basically I have a series of functions I want to run where the result from function 1 dictates the logic in a second ...

1 2 3 4 5