ThreadQueue
ThreadQueue(self, target, n_threads=10, verbose=False)
process_list
ThreadQueue.process_list(self, work_list)
Parameters
- work_list (list): List of argument lists for threads to run
join
ThreadQueue.join(self)
Waits until all child threads are joined
worker
ThreadQueue.worker(self, target)
Worker for pulling images
Parameters
- target (function): Target function for thread to run