Multiprocessing Goodness -- Part 2 -- Class Defintions
The multiprocessing module includes a generic Process class, which can be used to wrap a simple function.
The function must be designed to work with Queues or Pipelines or other synchronization techniques.
There's an advantage, however, to defining a class which gracefully handles generator functions. If we have Generator-Aware multi-processing …
more ...