Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a bit confused about how to handle time in Java. If I need a "update rate" for a method, let's say 200 milliseconds, how would I do that in an accurate way without using Thread sleep stuff?

share|improve this question
4  
Can you explain a bit more clearly what you mean by the "update rate" of a method? – T.J. Crowder Nov 11 '11 at 11:07
Can you explain what you mean by accurate? What variation is acceptable given 200 ms is likely to an arbitrary choice? – Peter Lawrey Nov 11 '11 at 11:10
Yes 200 ms is arbitrary time and a variation of 10% would be acceptable – menemenemu Nov 11 '11 at 11:26

5 Answers

The way I understand your question - you want to "execute" a method every 200 milliseconds and you do not want to use the Thread.sleep() stuff.

The solution to your problem lies in the Timer/TimerTask class combination. Please read http://enos.itcollege.ee/~jpoial/docs/tutorial/essential/threads/timer.html

Have a look at the section "Performing a Task Repeatedly" on the above link.

share|improve this answer

Java is (normally) not a real-time system. If you need to call a method precisely every 200 miliseconds, you will run into problems. If some deviation is ok, use a scheduler like Quartz for this.

share|improve this answer

I think you are referring to a way of repeatedly executing the same task with a set time interval. In that case you are looking for java.util.Timer and java.util.TimerTask.

share|improve this answer

I would try using ScheduleExecutorService.scheduleAtFixedRate Its a built in library with fairly high accuracy. (It uses nano timings where available instead of mill-second timing which older libraries use)

share|improve this answer

You could use ScheduledThreadPoolExecutor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.