The initial implementation of the web service logic starts up a background worker process to do the work, then communicates with it over a Queue. If multiple such processes may eventually be run concurrently, the underlying multiprocessing may need to rely on a Pool of Process entities, to spawn worker processes as needed (each UUID identified).
The initial implementation of the web service logic starts up a background worker process to do the work, then communicates with it over a Queue. If multiple such processes may eventually be run concurrently, the underlying multiprocessing may need to rely on a Pool of Process entities, to spawn worker processes as needed (each UUID identified).