Skip to content

Instantly share code, notes, and snippets.

@Sukelluskello
Forked from sebdah/threading_example.py
Last active August 29, 2015 14:24
Show Gist options
  • Save Sukelluskello/a7625fc4fdd27c8ef9e7 to your computer and use it in GitHub Desktop.
Save Sukelluskello/a7625fc4fdd27c8ef9e7 to your computer and use it in GitHub Desktop.
import threading
import time
class ThreadingExample(object):
""" Threading example class
The run() method will be started and it will run in the background
until the application exits.
"""
def __init__(self, interval=1):
""" Constructor
:type interval: int
:param interval: Check interval, in seconds
"""
self.interval = interval
thread = threading.Thread(target=self.run, args=())
thread.daemon = True # Daemonize thread
thread.start() # Start the execution
def run(self):
""" Method that runs forever """
while True:
# Do something
print('Doing something imporant in the background')
time.sleep(self.interval)
example = ThreadingExample()
time.sleep(3)
print('Checkpoint')
time.sleep(2)
print('Bye')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment