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 7539925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:30:38+00:00 2026-05-30T07:30:38+00:00

I have multiple instances of the following code. var start_time = new Date().getTime(); setTimeout(function

  • 0

I have multiple instances of the following code.

var start_time = new Date().getTime();
setTimeout(function timeout(){
    var current_time = new Date().getTime();
    if(some_condition){
        // do stuff
    }else if(start_time - current_time > 10000){
        console.error("... request is timing out.");
    }else{
        setTimeout(timeout, 30);
    }
}, 1);

I want to abstract it to something like

globalLibrary = {

    timeout : function(name, condition, callback, repeat){
        if(typeof repeat !== "number")
            repeat = 30;


        setTimeout(function timeout(){
            var current_time = new Date().getTime();
            if(condition){
                callback();
            }else if(start_time - current_time > 10000){
                console.error(name + " request is timing out.");
            }else{
                setTimeout(timeout, repeat);
            }
        }, 1);

    }
}

// .... somewhere else (not in global scope.)
// There are vars here that are used in the condition and in the callback function.
// They will change due to processes happening elsewhere. 
// eg ajax requests and iframe sendMessages being received.
globalLibrary.timeout(
    "something",
    condition,
    function(){
        // do stuff.
    }       
);

How do I do this so that the condition is rerun with each iteration?
The condition may include multiple ands and ors.

(I’m not using setInterval due to subtle differences in the timing.)

  • 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-30T07:30:40+00:00Added an answer on May 30, 2026 at 7:30 am

    Basically, you want lazy evaluation of the condition. This is easy implemented in languages supporting functional programming by creating a nullary function, which is evaluated when the value is needed.

    globalLibrary = {
        timeout: function(name, condition, callback, repeat){
            if(typeof repeat !== "number")
                repeat = 30;
    
            setTimeout(function timeout(){
                var current_time = new Date().getTime();
                if ( condition() ) { // Note: 'condition' is called
                    callback();
                } else if (start_time - current_time > 10000) {
                    console.error(name + " request is timing out.");
                } else {
                    setTimeout(timeout, repeat);
                }
            }, 1);
        }
    }
    
    globalLibrary.timeout(
        "something",
        function () {return condition},
        function(){
            // do stuff.
        }       
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a page with multiple instances that contain of the following code: <div
I have the following code: private bool CheckForDuplicatesInCache(Message theMessage) { var cacheClient = MemcachedClient.GetInstance(IntegrationCache);
following code waits till dom ready jQuery(document).ready(function(){ what do i have to write to
I have the following code. int phoneContactID = new Random().nextInt(); Cursor contactLookupCursor = context.getContentResolver().query(
I have a situation where I might have multiple instances of a program running
I have a project where I have multiple instances of an app running, each
Objective: In support of a Windows Service that may have multiple instances on a
Basically multiple instances of our application will be launched but they need to have
I have a maven pom.xml file with multiple instances of a same goal defined
I have object A which contains multiple instances of object B, which in turn

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.