I need to make a series of N ajax requests without locking the browser, and want to use the jquery deferred object to accomplish this.

Here is a simplified example with three requests, but my program may need to queue up over 100 (note that this is not the exact use case, the actual code does need to ensure the success of step (N-1) before executing the next step):

$(document).ready(function(){

    var deferred = $.Deferred();

    var countries = ["US", "CA", "MX"];

    $.each(countries, function(index, country){

        deferred.pipe(getData(country));

    });

 });

function getData(country){

    var data = {
        "country": country  
    };


    console.log("Making request for [" + country + "]");

    return $.ajax({
        type: "POST",
        url: "ajax.jsp",
        data: data,
        dataType: "JSON",
        success: function(){
            console.log("Successful request for [" + country + "]");
        }
    });

}

Here is what gets written into the console (all requests are made in parallel and the response time is directly proportional to the size of the data for each country as expected:

Making request for [US]
Making request for [CA]
Making request for [MX]
Successful request for [MX]
Successful request for [CA]
Successful request for [US]

How can I get the deferred object to queue these up for me? I've tried changing done to pipe but get the same result.

Here is the desired result:

Making request for [US]
Successful request for [US]
Making request for [CA]
Successful request for [CA]
Making request for [MX]
Successful request for [MX]

Edit:

I appreciate the suggestion to use an array to store request parameters, but the jquery deferred object has the ability to queue requests and I really want to learn how to use this feature to its full potential.

This is effectively what I'm trying to do:

when(request[0]).pipe(request[1]).pipe(request[2])... pipe(request[N]);

However, I want to assign the requests into the pipe one step at a time in order to effectively use the each traversal:

deferred.pipe(request[0]);
deferred.pipe(request[1]);
deferred.pipe(request[2]);
link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

With a custom object

function DeferredAjax(opts) {
    this.options=opts;
    this.deferred=$.Deferred();
    this.country=opts.country;
}
DeferredAjax.prototype.invoke=function() {
    var self=this, data={country:self.country};
    console.log("Making request for [" + self.country + "]");

    return $.ajax({
        type: "GET",
        url: "wait.php",
        data: data,
        dataType: "JSON",
        success: function(){
            console.log("Successful request for [" + self.country + "]");
            self.deferred.resolve();
        }
    });
};
DeferredAjax.prototype.promise=function() {
    return this.deferred.promise();
};


var countries = ["US", "CA", "MX"], startingpoint = $.Deferred();
startingpoint.resolve();

$.each(countries, function(ix, country) {
    var da = new DeferredAjax({
        country: country
    });
    $.when(startingpoint ).then(function() {
        da.invoke();
    });
    startingpoint= da;
});

Fiddle http://jsfiddle.net/7kuX9/1/

To be a bit more clear, the last lines could be written

c1=new DeferredAjax( {country:"US"} );
c2=new DeferredAjax( {country:"CA"} );
c3=new DeferredAjax( {country:"MX"} );

$.when( c1 ).then( function() {c2.invoke();} );
$.when( c2 ).then( function() {c3.invoke();} );

With pipes

function fireRequest(country) {
        return $.ajax({
            type: "GET",
            url: "wait.php",
            data: {country:country},
            dataType: "JSON",
            success: function(){
                console.log("Successful request for [" + country + "]");
            }
        });
}

var countries=["US","CA","MX"], startingpoint=$.Deferred();
startingpoint.resolve();

$.each(countries,function(ix,country) {
    startingpoint=startingpoint.pipe( function() {
        console.log("Making request for [" + country + "]");
        return fireRequest(country);
    });
});

http://jsfiddle.net/k8aUj/1/

Edit : A fiddle outputting the log in the result window http://jsfiddle.net/k8aUj/3/

Each pipe call returns a new promise, which is in turn used for the next pipe. Note that I only provided the sccess function, a similar function should be provided for failures.

In each solution, the Ajax calls are delayed until needed by wrapping them in a function and a new promise is created for each item in the list to build the chain.

I believe the custom object provides an easier way to manipulate the chain, but the pipes could better suit your tastes.

link|improve this answer
This answer definitely works, I'm trying to digest all of it as it is quite complex. Thank you! – Graham Dec 23 '11 at 17:25
I think I'm seeing this now. The main difference between my original code and yours seems to be that you are creating Deferred objects for every request, where mine was trying to use a single Deferred. Am I correct? – Graham Dec 24 '11 at 16:30
1  
Some specific questions for you: (1) why do you explicitly return a promise when you are already returning the promise from the ajax call? (2) why are assiging "this" to "self"? (3) why did you not choose to use pipe() when that is the native jquery queue function? (4) When we are creating Deferred objects for each request, what is the memory requirement when I start feeding hundreds of requests into the "queue"? How lightweight is a Deferred object? – Graham Dec 24 '11 at 17:08
A Deferred is a promise to invoke some functions when it is marked as resolved or failed – nikoshr Dec 24 '11 at 17:44
Sorry for the break. Tha ajax call hasn't been made by the point I finish chaining them, so I can't use their promises and have to create my own promise, hence the custom object. Pipe could be used, but I think the intent of multiple when is clearer. Hope it helps, more explanations if you wish when I get access to a real keyboard – nikoshr Dec 24 '11 at 17:49
show 8 more comments
feedback

I'm not exactly sure why you would want to do this, but keep a list of all of the URLs that you need to request, and don't request the next one until your success function is called. I.E., success will conditionally make additional calls to deferred.

link|improve this answer
I can't copy the exact code in here for reasons of client confidentiality, but I do have a very good reason to chain these calls sequentially. Wouldn't your solution require the whole array to be passed in to the getData function? – Graham Dec 23 '11 at 6:34
More or less, or otherwise available at some place above the getData function in the scope chain. For example, have both of your original 2 code blocks (in your original question) in a closure, combined with the array as a 3rd section. You would also need to keep track of which requests were already made - but you could handle this by just popping-off the elements as you request them (treating it like a stack). – ziesemer Dec 23 '11 at 6:38
It's tangential, but could you also expand on why you can't see why I'd want to queue ajax requests? There are two very good use cases I can think of: 1. limiting how many simultaneous requests are sent to a server, and 2. potential dependencies between requests. – Graham Dec 23 '11 at 6:53
All modern web browsers automatically manage a pool of connections per server, in an effort to improve page loading times (deferred or not). Assuming a round-trip latency of 20 ms with HTTP keep-alives enabled, 100 requests will take a minimum of 2 seconds to process sequentially - compared to maybe 5 allowed concurrent connections per hostname, this would be 20% of that, or 0.4 seconds - and this is the most conservative estimate of savings. (browserscope.org/?category=network is a good link with details around the max. concurrent connections configured in modern web browsers.) – ziesemer Dec 23 '11 at 7:03
Thanks for the explanation, that does eliminate the first objection. However, request dependency is my primary requirement here and I do promise that I need to queue them up (no pun intended) – Graham Dec 23 '11 at 7:14
show 3 more comments
feedback

This is a lot of code for something that is already documented in the jQuery API. see http://api.jquery.com/deferred.pipe/

You can just keep piping them until all 100 are made.

Or, I wrote something to make N calls, and resolve a single function with the data of all the calls that have been made. Note: it returns the data not the super XHR object. https://gist.github.com/1219564

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.