You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 16/umbraco-cms/reference/scheduling.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Be aware you may or may not want this background job to run on all servers. If y
14
14
15
15
## `IRecurringBackgroundJob` Properties and Methods
16
16
17
-
### `Period`
17
+
### Period
18
18
19
19
Defines how often the job runs. This property is a `TimeSpan`.
20
20
@@ -23,7 +23,7 @@ Defines how often the job runs. This property is a `TimeSpan`.
23
23
TimeSpanPeriod=TimeSpan.FromMinutes(5);
24
24
```
25
25
26
-
### `Delay`
26
+
### Delay
27
27
28
28
Defines how long to wait after application startup before running the task for the first time. Default is 3 minutes. This property is a `TimeSpan`.
29
29
@@ -32,7 +32,7 @@ Defines how long to wait after application startup before running the task for t
32
32
TimeSpanDelay=TimeSpan.FromMinutes(3);
33
33
```
34
34
35
-
### `ServerRoles`
35
+
### ServerRoles
36
36
37
37
Specifies a list of roles that should run this job. In a multi-server setup, you may want your job to run on _all_ servers or only on _one_ of your servers.
For more information about server roles, see the [Load Balancing](../fundamentals/setup/server-setup/load-balancing/README.md#scheduling-and-server-role-election) documentation.
49
49
50
-
### `PeriodChanged`
50
+
### PeriodChanged
51
51
52
52
An event used to notify the background job service if the job’s period changes dynamically.
0 commit comments