zinc55

downloader

Feb 27th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.  
  2. public class Downloader implements Runnable {
  3.    
  4.     volatile boolean finished = false;
  5.  
  6.     public void stopMe()
  7.     {
  8.     finished = true;
  9.     }
  10.  
  11.     public void run()
  12.     {
  13.         while (!finished)
  14.         {
  15.             System.out.println("things");
  16.         }
  17.        
  18.         System.out.println("Done.");
  19.     }
  20. }
Add Comment
Please, Sign In to add comment