SchedulingConfiguration
Contains configuration of the schedule like retries, activation and other.
{
"active": false,
"runOnce": false,
"retries": 0,
"allowedFailures": 0,
"cronExpression": "30 * * * * * (Executes behavior every 30 seconds)",
"taskTimeout": 0
}
Indicates that the behavior is currently scheduled.
Run the scheduled behavior only once.
The number of retries before de-activating the scheduled behavior.
The number of allowed failures before de-activating the scheduled behavior.
CRON job declaration determing when the scheduled behavior has to be executed. Where the syntax is
The time in seconds to wait for task result before setting the scheduled behavior in retry mode in case of an error. The default is 100 seconds.