L
Lucas Tam
Is there a document online which details the advantages of using a
Threadpool?
My application uses a user configuration amount of threads which does the
following:
Main Thread Gives Work to Sub Thread
Sub Thread Import/Export Record
Sub Thread Import/Export Record
etc...
Once the thread is down its job, the thread exists. The Main Thread
(application) continues running until a timer hits, and the process is
repeated.
Does it make sense to use a threadpool? My threads exit after their work is
complete. Typically I have 1 or 2 sub threads running and about 50+ work
items.
Threadpool?
My application uses a user configuration amount of threads which does the
following:
Main Thread Gives Work to Sub Thread
Sub Thread Import/Export Record
Sub Thread Import/Export Record
etc...
Once the thread is down its job, the thread exists. The Main Thread
(application) continues running until a timer hits, and the process is
repeated.
Does it make sense to use a threadpool? My threads exit after their work is
complete. Typically I have 1 or 2 sub threads running and about 50+ work
items.