kevin.cianfarini
06/05/2025, 5:58 PMclock.schedulePulse {
atSeconds(0)
atMinutes(0, 10, 20, 30, 40, 50)
inMonths(Month.May, Month.December)
onDaysOfWeek(DayOfWeek.Friday)
}
• A new API for scheduling one-off jobs.
val instant = Instant.parse("2025-05-10T13:15:00Z")
clock.executeAt(instant) {
println("I executed at ${clock.now()}!")
}
• The ability to schedule jobs with standard cron expressions:
clock.schedulePulse(cronExpression = "* * * * *")
• Improved documentation which I put a lot of effort into
• Some bug fixesMichael Paus
08/22/2025, 10:51 AMkevin.cianfarini
08/22/2025, 11:33 AM