Untitled
unknown
plain_text
2 years ago
305 B
14
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...