Advertisement
ManZzup

asynctimer2

Dec 30th, 2014
929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1.     Timer timer = new Timer();
  2.         timer.scheduleAtFixedRate(new TimerTask() {
  3.            
  4.             @Override
  5.             public void run() {
  6.                 //async task here
  7.                 new ThoughtsHandler().execute();
  8.             }
  9.         }, 0, 10000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement