August 2015
Intermediate to advanced
286 pages
5h 42m
English
To implement a new thread using the threading module, you have to do the following:
Thread class_init__(self [,args]) method to add additional argumentsrun(self [,args]) method to implement what the thread should do when it is startedOnce you have created the new Thread subclass, you can create an instance of it and then start a new thread by invoking the start() method, which will, in turn, call the run() method.
To implement a thread in a subclass, we define the myThread class. It has two methods that must be overridden with the thread's arguments:
import threading import time exitFlag = 0 class myThread (threading.Thread): def ...
Read now
Unlock full access