August 2015
Intermediate to advanced
286 pages
5h 42m
English
To implement a custom subclass and process, we must:
Process class_init__(self [,args]) method to add additional argumentsrun(self [,args]) method to implement what Process should when it is startedOnce you have created the new Process subclass, you can create an instance of it and then start by invoking the start() method, which will in turn call the run() method.
We will rewrite the first example in this manner:
#Using a process in a subclass Chapter 3: Process Based #Parallelism import multiprocessing class MyProcess(multiprocessing.Process): def run(self): print ('called run method in process: %s' %self.name) return if __name__ == '__main__': ...Read now
Unlock full access