Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
305 B
6
Indexable
Never
 class WorkerThread
 {
     public static void PostRequest()
     {
         Random rnd = new Random();
         for (int i = 0; i < 5; i++)
         {
             int timeProcessing = rnd.Next(500, 1000);
             LoadBalancer.Instance.ProcessRequest(timeProcessing);
         }
     }
 }