Schedular Design

Does anyone have a design for a job/batch schedular. I want to design one and want to know what all patterns can be used
[134 byte] By [thakuraman] at [2007-9-27 3:08:17]
# 1

There can be alot to it, usually your class model will consist of things like,

Job's, Task's, Schedules, Calendars ( for Localised Holidays etc ..) within

EJB 's Message Driven beans can be used to Asynchrously execute your tasks.

Generally your scheduler will be running in its own vm calling out to EJB's etc...

I've been asked to look into a J2EE JobScheduler for my compnay, if we endup

creating our own instead of buying one, I will share my design.

Regards,

TK.

TravisK at 2007-7-5 0:10:54 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
"Applied Java Patterns" The Sun Microsystem Press Java Series The base example is a scheduler/contact info - perusing the source codemay provide some useful info.
raycon1999 at 2007-7-5 0:10:54 > top of Java-index,Other Topics,Patterns & OO Design...