I want to limit my number of threads in my multi-threaded WCF service. So, I use ThreadPool.SetMaxThread function. Now, I want to use System.Timers to generate events at given intervals.
But, my service receives at the meantime many actions to execute in the thread pool. When my timer is elapsed, the action is queued in the ThreadPool (I've sometimes 100,000 tasks in expectations) and therefore slow to execute.
Is there a way to execute my elapsed event before? For example, by setting priority task queued on the threadpool? Or Elapsed the event outside of the threadpool?
I want to keep my global limit of thread in my service.