multi thread and appdomains application

  • Thread starter Thread starter Daylor
  • Start date Start date
D

Daylor

hi.
i have mult thread vb.net application.
it has 30 threads.
each thread serves 1 phone caller.

the question :
is there a reason , to create appdomain for each Phone Service ?
meaning 30 appdomains ?

or , the purpose for creating another appdomains, is diffrent ?
 
Hi Daylor,

You don't need to create different appdomains.
AppDomains should be looked at as a process (to isolate some code). They
come handy also in situations you want to unload an assembly.
Threads are just fine for your task.
BTW, You might consider using ThreadPool to dynamically create threads when
needed instead of using fixed numbers of threads.
 
Back
Top