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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T10:07:02+00:00 2026-05-21T10:07:02+00:00

I made a polling system for which you must use instantiation, thus allowing you

  • 0

I made a polling system for which you must use instantiation, thus allowing you to have multiple pollers going at the same time.

The polling uses setTimeout to delay each request according to a defined poll rate.

Here is a very simplified version:

function Poller(url, rate, callback) {
  var timeoutReference = null;

  var public = {
    poll: function() {
      /* Request here i.e. $.GET(....)
         calling callback with recieved data on success */

      console.log("Poller running");

      timeoutReference = setTimeout(public.poll, rate);                
    },
    stop: function() { 
      clearTimeout(timeoutReference); 
    }
  }

  return public;    
}

var poller1 = new Poller('http://www.site.com/feed', 5000, readData);

poller1.poll();

Now if I do

poller1 = null;

The timeout is still running and will run forever. I need to do

poller1.stop(); 
poller1 = null;

for it to work as intended.

Is there any way to clear the timeout when all references are lost, thus omitting the need for calling poller1.stop(); before unreferencing the instance?

  • 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-21T10:07:03+00:00Added an answer on May 21, 2026 at 10:07 am

    There’s no way to “find” a lost timer index (they’re just numbers). You could always wrap “setTimeout()” in a function that keeps a global registry or something. You’d still have the problem of having to identify them somehow, but there are several ways to approach that.

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

Sidebar

Related Questions

I have made a simple chat application which uses long-polling approach using jquery, function
I made a Web service in which I have a function to count some
I made a UITableViewCell and I have 20 rows in that table in which
I have a project where we have decided to use a polling architecture through
I've made a long-polling like a request in a function using jQuery ajax, which
In the application I'm building I'm polling for a status update and I have
I have a master repo on host1 and made an update to a repo
I have a report which grabs a whole bunch of statistical data that represent
I have made connection string in web.config file. <connectionStrings> <add name=Test_registration connectionString=Data Source=DOTNET\SA;Initial Catalog=Test2009;User
I have a contest running, and to look at the results I've made this

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.