Skip to main content

TimerFixedRate


id: py-TimerFixedRate

TimerFixedRate

Recurring timer that fires at a fixed interval.


Properties

PropertyTypeDescription
PeriodintInterval in milliseconds
PayloadanyData passed to the timer callback
StartAtDateTimeOptional — delay first execution until this time
{
"Period": 60000, # Every 60 seconds
"Payload": {"jobType": "heartbeat"},
"StartAt": DateTime.now().plus_minutes(5)
}

See Also