So, i have a situation where an event occurs and i need to then 'broadcast' that to several subscribed 'listeners'.
My current design is a loop for each subscriber and works serially, notifying each 'receiver' in turn.
However, in some load/stress testing i find that it can queue up more than i like in that #15 in a list of receivers could end up waiting a long time before it receives it's notification.
I want to provide a way to have the list of receivers receive the notification more or less concurrently.
ThreadPool is out. I have my own reasons as to why.
My concern is on performance. Here is what I'm considering....
A. Each time the event fires, one thread is created for each receiver to do the receiver specific notification. The thread dies when the notification completes.
----OR----
B. The first time the event fires, a thread is created for each receiver, but is an 'infinite' thread (has a loop that keeps it alive), and notification details are marshaled to each of these threads which then process the new data.
So, the question is: Is it more expensive to create a new thread, or to marshal data to an existing thread, or if equally expensive, why choose one over the other?