Timer objects are used to represent actions that needs to be scheduled to run after a certain instant of time. These objects get scheduled to run on a separate thread that carries out the action. However, the interval that a timer is initialized with might not be the actual instant when the action was actually performed by the interpreter because it is the responsibility of the thread scheduler to actually schedule the thread corresponding to the timer object.
Timer is a sub class of Thread class defined in python. It is started by calling the start() function corresponding to the timer explicitly.
Creating a Timer object
Syntax:
threading.Timer(interval, function, args = None, kwargs = None)
Create a timer that will run function with arguments args and keyword arguments kwargs, after interval seconds have passed. If args is None (the default) then an empty list will be used. If kwargs is None (the default) then an empty dict will be used.
import threading
def gfg():
print ( "GeeksforGeeks\n" )
timer = threading.Timer( 2.0 , gfg)
timer.start()
print ( "Exit\n" )
|
Output:
Exit
GeeksforGeeks
Explanation: The program above, schedules gfg() function to run after 5 seconds of interval since start() function call.
Cancelling a timer
Syntax:
timer.cancel()
Stop the timer, and cancel the execution of the timer’s action. This will only work if the timer is still in its waiting stage.
import threading
def gfg():
print ( "GeeksforGeeks\n" )
timer = threading.Timer( 5.0 , gfg)
timer.start()
print ( "Cancelling timer\n" )
timer.cancel()
print ( "Exit\n" )
|
Output:
Cancelling timer
Exit
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jun, 2017
Like Article
Save Article