Join the close process of worker pool
(self)
| 200 | time.sleep(0.5) # Fix for early python version |
| 201 | |
| 202 | def join(self): |
| 203 | """Join the close process of worker pool""" |
| 204 | for i in range(self.num_workers): |
| 205 | self.process_list[i].join() |
| 206 | |
| 207 | |
| 208 | def initialize( |
no outgoing calls