Guest User

Untitled

a guest
Mar 24th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package main;
  2.  
  3. public class BLIDindexerMaster {
  4.  
  5.     public static void main(String[] args)
  6.     {
  7.         // TODO Auto-generated method stub
  8.         int threadInterval = 50000;
  9.         int delay = 225;
  10.        
  11.         //the delay system is used to prevent Cloudflare from detecting this program as a DoS.
  12.        
  13.         for (int id = 0; id < 150000; id += threadInterval)
  14.         {
  15.             BLIDindexerThread it = new BLIDindexerThread(id, id + threadInterval, delay);
  16.             new Thread(it).start();
  17.         }
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment