vote up 1 vote down star

I need a method to be called in an App Server (Glassfish) every 5 seconds, no matter what. Are timers reliable enough for this? What are my options.

flag

3 Answers

vote up 0 vote down check

Unless you are on a real time system no "timer" is going to gve you that accuracy. Timers in general provide a "it will happen in at least the time you want... but maybe later" sort of thing.

This is an underlying OS thing, not a Java thing.

Edit:

That being said... do you really mean "5 seconds exactly" or will a few milliseconds later work? If a few milliseconds later works then a timer is fine. It is possible that sometimes that "few milliseconds" could be several hundred however, depending in what is going on in the system (os as well as things like garbage collection in the VM).

link|flag
s/minutes/seconds/ – Ryan Graham Mar 12 at 15:38
reading fail :-) fixing answer - thx – TofuBeer Mar 12 at 16:16
vote up 0 vote down

If you need it every 5 seconds then don't use quartz unless you want to run all the misses events when the server restarts.

Use something more lightweight such as java.util.Timer. Quartz uses databases to make persistent events - it will increase the chance that it will not run every 5 seconds. (Database busy/slow, etc)

link|flag
vote up -1 vote down

Yes look at using the quartz api, its the only free enterprise class scheduling api for java that I know about. http://www.opensymphony.com/quartz/

I am currently using it in a large clustered financial application. The docs are a nightmare but its generally very reliable. Its a reliable are your going to get.

karl

link|flag

Your Answer

Get an OpenID
or

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