orpiske commented on code in PR #12098:
URL: https://github.com/apache/camel/pull/12098#discussion_r1404023389


##########
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:
   Thanks. I am fine with the approach. I would still like to see a note about 
time possible time drifts and inconsistent behavior during daylight changes 
(because it's caused by the nature of using time specifications instead of 
duration). 



-- 
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

Reply via email to