I am writing an image board scraper in my free time to teach me mostly about threading. Currently I am using a producer/consumer type pattern to facilitate this effort. However, I am running into a problem.
Right now, I have "queue processors" that observe and act upon specific types of thread-safe queues. These queue processors poll the targeted queue every X seconds, and, if there is an item on the queue waiting to be processed, the queue processor de-queues that item, spins up a new thread with the item, and starts the thread. On each thread, long-running methods are called (like connecting to the website and downloading the file). In this manner, each item gets its own thread to run on.
I am having a difficult time figuring out how to report the status of each item while it is being processed on each thread.
For example, let's say we have main thread MT. MT spawns child threads T1, T2, T3, T4, and T5. On each thread is a corresponding object, O1...O5. These objects can be in, say, three different states- S1, S2, S3- while it is being processed on its thread.
How can I report the status, S of each object O to the main thread MT when the status of object O changes?
I tried using events to report the status, but I'm encountering some wonky results around that. I googled a bit about using threads and events, but didn't get very far.
Any help would be appreciated.
Thank you.