About 16,700,000 results
Open links in new tab
  1. Set and manage timers on your Google smart speaker or display

    Use voice commands to set and manage timers on your Google smart speaker or display. Set a general timer to alert you when a specified time has passed, or a sleep timer to stop playing …

  2. How to stop the task scheduled in java.util.Timer class

    Oct 15, 2020 · I am using java.util.Timer class and I am using its schedule method to perform some task, but after executing it for 6 times I have to stop its task. How should I do that?

  3. Stop setInterval call in JavaScript - Stack Overflow

    Sep 8, 2020 · I am using setInterval(fname, 10000); to call a function every 10 seconds in JavaScript. Is it possible to stop calling it on some event? I want the user to be able to stop the …

  4. html - How to stop timer in javascript? - Stack Overflow

    Mar 22, 2018 · Learn how to stop a timer in JavaScript with this Stack Overflow discussion, featuring tips and solutions for effective timer control.

  5. javascript - How to stop a setTimeout loop? - Stack Overflow

    142 setTimeout returns a timer handle, which you can use to stop the timeout with clearTimeout. So for instance:

  6. java - How to stop a running TimerTask - Stack Overflow

    I am trying to make a simple timer that plays a beep after the specified number of seconds. I managed to get it to work, but the TimerTask continues to run after the beep. Now do I stop …

  7. Cancellable threading.Timer in Python - Stack Overflow

    May 23, 2017 · The threading.Timer class does have a cancel method, and although it won't cancel the thread, it will stop the timer from actually firing. What actually happens is that the …

  8. .net - C# - how do you stop a timer? - Stack Overflow

    Dec 30, 2010 · I know it sounds stupid, but I've tried everything to stop a timer, but the timer won't stop. I'm working on a game and i would appreciate if someone could tell me how to stop a timer.

  9. reactjs - How to start and stop timer display? - Stack Overflow

    Aug 19, 2021 · How to start and stop timer display? Asked 4 years, 4 months ago Modified 1 month ago Viewed 14k times

  10. c# - Reliably stop System.Threading.Timer? - Stack Overflow

    Jun 17, 2011 · Well I've searched a lot for a solution to this. I'm looking for a clean and simple way to prevent the callback method of a System.Threading.Timer from being invoked after I've …