Untitled

Anonymous
plain_text
10/28/2023 1:15 PM
408 B
20
Indexable
 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);
         }
     }
 }
Editor is loading...