I would like an event to be triggered when an item is added or removed from a Queue.
For example:
A build gets added to a build queue, when it is added I would like a build of the project to occur. Build code locked (thread safe).
A build gets removed from a build queue when it is built. Build code unlocked (thread safe).
Additionally:
I found this previous thread from 2009, I am wondering if there is a newer / better way of going about this.
C#: Triggering an Event when an object is added to a Queue
Thanks.