RE: How to trigger events from tomcat?

2003-08-17 Thread Berry, Layton
Use the java.util.Timer class. It has been around since Java 1.3. -Original Message- From: Sjoerd van Leent [mailto:[EMAIL PROTECTED] Sent: Saturday, August 16, 2003 8:04 AM To: 'Tomcat Users List' Subject: RE: How to trigger events from tomcat? It seems the best way to do

RE: How to trigger events from tomcat?

2003-08-16 Thread Sjoerd van Leent
It seems the best way to do it is in a process or a thread, running aside the regular web-application. This indeed uses an infinite loop to check on times. You should be able to set this process as a low-priority process, so it doesn't consume too much processor time. I don't know if there is