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?
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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) |
|||
|
|
|
You could use ScheduledThreadPoolExecutor. |
|||
|
|