orpiske commented on code in PR #12098: URL: https://github.com/apache/camel/pull/12098#discussion_r1400053070
########## components/camel-quartz/src/main/docs/quartz-component.adoc: ########## @@ -164,6 +164,22 @@ quartz://groupName/timerName?cron=0+0/5+12-18+?+*+MON-FRI&trigger.timeZone=Europ The timeZone value is the values accepted by `java.util.TimeZone`. +== Specifying start date + +The Quartz Scheduler allows you to configure start date per trigger. You can provide the start date as TimeInMillis as follows: + +---- +quartz://groupName/timerName?cron=0+0/5+12-18+?+*+MON-FRI&trigger.startAt=1700452232554 +---- + +== Specifying end date + +The Quartz Scheduler allows you to configure end date per trigger. You can provide the end date as TimeInMillis as follows: + +---- +quartz://groupName/timerName?cron=0+0/5+12-18+?+*+MON-FRI&trigger.endAt=1700452232554 +---- + Review Comment: > Is there any existing example for setting the time as date/timezone? I was inclined to use ISO-8601 but was thinking of something like "2001-07-04T12:08:56CET" for better readability, especially for DST based times. I am presently using 3.14 due to some hard dependencies on Java 8. Hence I would urge you to also consider 3.14 as a candidate for shipping this feature. I'd probably make this configurable. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org