protected override WindowsServiceThread[] CreateThreads(int count)
 {
     WindowsServiceThread[] threads = new WindowsServiceThread[count];
     for (int x = 0; x < count; x++) {
         threads[x] = new AgentThread<Task>(this, x + 1);
     }
     return threads;
 }
예제 #2
0
 protected override WindowsServiceThread[] CreateThreads(int count)
 {
     WindowsServiceThread[] threads = new WindowsServiceThread[count];
     for (int x = 0; x < count; x++)
     {
         threads[x] = new AgentThread <Task>(this, x + 1);
     }
     return(threads);
 }