This relates to an article on MSDN for the RTC api.
http://msdn.microsoft.com/library/de...use_rtcapi.asp
under 'Threading Issues'
We must create instances of the RTC client to do the messeging. However, in
scalable applications it suggests only creating 10-15 instances of the Client
object on each thread before taking a new thread and adding it to your thread
pool.
Many of the threading examples show me creating a new
ThreadStart(workerObject.WorkerMethod) then adding that ThreadStart delegate
to a new thread and finally calling .Start() on the thread. But doesnt this
creat a 1:1 relationship between threads and worker objects?
Do do what I write about in the first paragraph do I have to write a custom
object that holds bunches of RTC client objects and then add each one of
those 'bundle' objects to the new threads?
Sorry I am new to multi-threading.
Thanks