J
John A. Bailo
From a Windows service (NET 2.0) I want to launch serveral threads in
a for loop that invokes a method using:
new Thread(delegate()
{ myMethod(248);}).Start();
Will those threads stay active even when the service reaches it Service
Timer Stop?
Do I have to create a thread monitor to test when those threads are
finished before allowing the service to go to the next Timer_Tick?
a for loop that invokes a method using:
new Thread(delegate()
{ myMethod(248);}).Start();
Will those threads stay active even when the service reaches it Service
Timer Stop?
Do I have to create a thread monitor to test when those threads are
finished before allowing the service to go to the next Timer_Tick?