- From the main process, I create 3 child processes and I pass an instance of a 'common' class...the same instance is passed to all 3 child processes.
- This common class has a dictionary and a queue (which contains a lot of items)
- These child processes retrieve 'items' from this queue
- For these items, I call a REST service to get some data about the 'item'
- I add this info to the "common" dictionary
- There are no errors
However, when I try to access this dictionary from the main process, its empty.