Re: OT: Scheduling Actions

2004-10-01 Thread DGraham
http://java-source.net/open-source/job-schedulers Dennis "Ciaran Hanley" <[EMAIL PROTECTED]> 10/01/2004 08:49 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "Struts User Mailing List" <[EMAIL PROTECTED]> cc Subject OT: Scheduling Actions Hi,

Re: OT: Scheduling Actions

2004-10-01 Thread fzlists
There might be some debate about this, but a daemon thread would be my suggestion. I know the rule about no spawning threads in a servlet container, but I've always thought that rule was a bit nebulous... Does it literally mean don't spwan any threads, or does it mean don't spawn any threads to

Re: OT: Scheduling Actions

2004-10-01 Thread David Cassidy
you might want to look at Timer objects ... http://java.sun.com/j2se/1.4.2/docs/api/java/util/Timer.html havn't used them, but if they are there ...