I'm trying to find the best way to create async calls when each call depends on the prior call to have completed. At the moment I'm chaining the methods by recursively calling a defined process function as illustrated below.

This is what I'm currently doing.

var syncProduct = (function() {
    var done, log;
    var IN_CAT = 1, IN_TITLES = 2, IN_BINS = 3;
    var state = IN_CAT;
    var processNext = function(data) {
        switch(state) {
            case IN_CAT:
                SVC.sendJsonRequest(url("/api/lineplan/categories"), processNext);
                state = IN_TITLES;
                break;
            case IN_TITLES:
                log((data ? data.length : "No") + " categories retrieved!");
                SVC.sendJsonRequest(url("/api/lineplan/titles"), processNext);
                state = IN_BINS;
                break;
            case IN_BINS:
                log((data ? data.length : "No") + " titles retrieved!");
                SVC.sendJsonRequest(url("/api/lineplan/bins"), processNext);
                state = IN_MAJOR;
                break;
            default:
                log((data ? data.length : "No") + " bins retrieved!");
                done();
                break;
        }
    }
    return {
        start: function(doneCB, logCB) {
            done = doneCB; log = logCB; state = IN_CAT;
            processNext();
        }
    }
})();

I would then call this as follows

var log = function(message) {
    // Impl removed.
}

syncProduct.start(function() {
    log("Product Sync Complete!");
}, log);

While this works perfectly fine for me I can't help but think there has to be a better (simpler) way. What happens later when my recursive calls get too deep?

NOTE: I am not using javascript in the browser but natively within the Titanium framework, this is akin to Javascript for Node.js.

link|improve this question

80% accept rate
1  
Have you looked into "promises"? They may fit nice. This is a library implementing it for Node. – pimvdb Feb 24 at 14:46
That library looks brilliant pimvdb, I think I'll be using this one. – Brett Ryan Feb 25 at 6:37
feedback

1 Answer

up vote 8 down vote accepted

There are libraries that do async chaining for you and they mostly come in two main flavours:

  1. Control flow libraries

    For example, see async, seq and step (callback based) or Q and futures (promise based). The main advantage of these is that they are just plains JS libraries that ease the pain of async programming.

    Promises are more flexible (you can add callbacks after the code has already run, you can store them on arrays, etc) but callback libraries might interact better with your existing code and libraries.

  2. Javascript CPS compilers

    For example, see tamejs. The main advantage of these is that they allow you to not have to write code in Continuation Passing Style - this is particularly good if you have complicated things like loops and other kinds of "goto" in your code.


If you just want something simple, go with one of the control-flow libraries. You can even implement some of the functions yourself if you are so inclined.

link|improve this answer
Excellent missingno, the Q library that pimvdb also mentioned in the comment to my question looks perfect. Could you give any feedback on libraries before I decide to go down a path? What I guess I don't want though is a completely blocking call on the first invoke. – Brett Ryan Feb 25 at 6:41
@BrettRyan: Actually, I mostly work with Dojo toolkit stuff so I have most of my experience with their promise library and not much experience with the alternatives. All different styles should be able to do all the non-blocking stuff you need so you should look more for the programming style anyway. If I would have to start something right now I would heavily consider using a CPS compiler - I don't really know how it would actually turn out but right now I'm kind of tired of having to manually write CPS code and hoping for something better. – missingno Feb 25 at 16:28
Thanks missingno, I'm using the Appcelerator Titanium Mobile SDK so don't really want to put another tool into the tool chain. Experimenting with the Q library really does seem like a natural fit. – Brett Ryan Feb 25 at 22:51
feedback

Your Answer

 
or
required, but never shown

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