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

  • Home
  • SEARCH
  • 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 7679229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:49:49+00:00 2026-05-31T17:49:49+00:00

I need to be able to make retries in node.js in the event of

  • 0

I need to be able to make retries in node.js in the event of failure inside a function. I’ve setup a while loop as shown below, but I am getting slightly confused about how I should wrap the function call to not make sure that it won’t block my whole server.

What should I do?

while(retryCount < 10 && !success){

    // Alternative one
    while(new Date().getTime() < now + 1000) {
        myFunction();
    }

    // Or:
    setTimeout( myFunction(), 1000);
}
  • 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-05-31T17:49:50+00:00Added an answer on May 31, 2026 at 5:49 pm

    You can store number of tryes in function object. It’s will be fine for cronjob. If you need same behaviour in request context you must store attempts counter in request scope (not in function object).

    var fnc = function() {
            console.log('try');
            if (true) { // Error condition
                    // Error here
                    if (!fnc.tryes) fnc.tryes = 0;
                    fnc.tryes++;
                    console.log(fnc.tryes);
                    if (fnc.tryes <= 10) {
                            setTimeout(fnc, 1000);
                    } else {
                            fnc.tryes = 0;
                    }
                    // Something wrong
            } else {
                    // We hame result
            }
    };
    
    fnc();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to be able to make an event such that every time a
I need to be able to make a program that looks through a mailbox
I need to be able to make a tree like structure in the appengine
I need to be able to be able to make some text on terminal
In my current project (presentation, slide software) I need to be able to make
I need to be able to make a token field with draggable elements like
I need to be able to make separte .vbs files that will (when triggered
In an application I am developing, I need to be able to make a
I need to be able to make changes to my development DB, Such as
I'm able to make the method for the call [self weaponAttachments:mpk5] but I don't

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.