Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8425509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:17:24+00:00 2026-06-10T04:17:24+00:00

I am writing a parser littered with Async Tasks. I use JQuery promises to

  • 0

I am writing a parser littered with Async Tasks. I use JQuery promises to control and order the async tasks. This is a psuedo code version of the constructor function:

   /**
     * @constructor
     */
    function Parser(json)
    {   
        return $.when(
            this.delete().then(this.insert(json)),
            this.doSomething(),
            this.doSomethingElse().then(this.update(json))
        ) 
    };

and this is what an example function looks like:

Parser.prototype.doSomething = function()
{   
    var dfd = $.Deferred();

    exampleTask(dfd.reject, dfd.resolve);

    return dfd.promise();
};

From the JQuery docs:

In the case where multiple Deferred objects are passed to jQuery.when,
the method returns the Promise from a new “master” Deferred object
that tracks the aggregate state of all the Deferreds it has been
passed

How can I use .progress() to notify anybody that cares about the overall progress of the Parser?
e.g.

var parser = new Parser(json);
parser.progress(function(prog){console.log(prog});

Heres a fiddle with what I’m trying to do:
http://jsfiddle.net/ashanova/RjULA/2/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T04:17:25+00:00Added an answer on June 10, 2026 at 4:17 am

    Use deferred.notify() to call the progressCallbacks. For example:

    function doSomething() {   
        var dfd = $.Deferred();
    
        var count = 0;
        var intervalId = setInterval(function() {
            dfd.notify(count++);
            count > 3 && clearInterval(intervalId);
        }, 500);
    
        return dfd.promise();
    };
    
    var promise = doSomething();
    
    promise.progress(function(prog) {
      console.log(prog);
    });​
    

    DEMO.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a parser and throughout my code in various methods I have
What I'm trying to do this is writing a simple parser for the following
I'm currently writing a parser for ColdFusion code. I'm using a regex (in c#)
I am writing a parser for quite complicated config files that make use of
I am writing a parser for delphi's dfm's files. The lexer looks like this:
I'm writing a parser for a binary format. This binary format involves different tables
I'm writing a parser for a very simple grammar in javacc. It's beginning to
I'm writing a parser for an internal xml-based metadata format in python. I need
I'm writing a parser for CSV data, and am trying to determine how to
I'm writing a parser for some LISP files. I'm trying to get rid of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.