I'm trying to create a cron expression that will trigger a job according to the time I get, and every X minutes. both start/end time and the minutes intervals are parametrs I get from the user. for example:
start time: 09:15 end time: 19:35 minutes interval: 15
I want the job to start at 09:15 and to be triggred every 15 minutes, so the last job will actually be at 19:30 (because it can't be after 19:35). my problem is that I dont know how to include the minutes of the start/end time..
How is it possible to create this kind of expression?
Thank's In advance.