Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for an event scheduler for Delphi?

Tags:

delphi

jedi

I was recently looking at TJvScheduledEvents that comes with the JVCL library because I have a need for a dynamic scheduler in a Delphi application. Initially this looked to fit the bill, but I have run into some concerns.

  • Limited documentation other than the code itself
  • The event scheduler form that lets you create events appears to be a design time form with no runtime interface.
  • Issues with storing dynamically created scheduled events to a file or database so that they are not lost when the application restarts.

Does anyone have any experience with this object or another scheduling interface. I would rather not have to build this myself if there are other options.

like image 570
Tim Koscielski Avatar asked Oct 23 '22 01:10

Tim Koscielski


1 Answers

I used CRON Scheduler as referenced in the comments above by @LURD. It has worked as expected and was very easy to integrate. I also like that it cleanly supported threads for running scheduled events and fit what I was looking for.

like image 104
Tim Koscielski Avatar answered Nov 02 '22 10:11

Tim Koscielski