Looking For a .NET Task Scheduling library
Posted
by Hounshell
on Stack Overflow
See other posts from Stack Overflow
or by Hounshell
Published on 2010-05-12T00:31:20Z
Indexed on
2010/05/12
0:34 UTC
Read the original article
Hit count: 603
.NET
|scheduling
I'm looking for the following features:
- Scheduler uses SQL Server as the backing store
- Tasks can be scheduled by one application and executed by another
- I can have multiple applications, each of which handles a specific subset of tasks
- Tasks can be triggered at specific times, now, or based on the success or failure of other tasks
- Data can be attached to tasks
There are a number of nice-to-have's, like a web management console, clustering/failover support, customizable logging, but they're not requirements.
On the surface Quartz.NET has a nice interface and seems to fit the bill as it satisfies (1), (4 with some custom work) and (5), but I've been beating my head against (2) and (3) seems like I'd have to invest more effort than it's worth, especially given how convoluted the innards of it are.
Any other libraries out there? Open source is preferred, with free as a close runner up. It's really hard to get management to pay for things like this when it's not their idea.
© Stack Overflow or respective owner