Search code examples
pythonmultiprocessingpool

Python multiprocessing: Pool of custom Processes


I am subclassing the Process class, into a class I call EdgeRenderer. I want to use multiprocessing.Pool, except instead of regular Processes, I want them to be instances of my EdgeRenderer. Possible? How?


Solution

  • From Jesse Noller:

    It is not currently supported in the API, but would not be a bad addition. I'll look at adding it to python2.7/2.6.3 3.1 this week