File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
src/WebJobs.Extensions/Extensions/Timers/Scheduling Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
namespace Microsoft . Azure . WebJobs . Extensions . Timers
7
7
{
8
8
/// <summary>
9
- /// Represents a timer schedule status.
9
+ /// Represents a timer schedule status. The scheduler uses this information to calculate
10
+ /// function invocation times.
10
11
/// </summary>
11
12
public class ScheduleStatus
12
13
{
@@ -18,6 +19,11 @@ public class ScheduleStatus
18
19
/// <summary>
19
20
/// Gets or sets the expected next schedule occurrence.
20
21
/// </summary>
22
+ /// <remarks>
23
+ /// When a function is invoked by the scheduler, the value of this property
24
+ /// will effectively be the current time. To determine the next schedule occurrence
25
+ /// from the current invocation, <see cref="TimerInfo.Schedule"/> can be used.
26
+ /// </remarks>
21
27
public DateTime Next { get ; set ; }
22
28
23
29
/// <summary>
You can’t perform that action at this time.
0 commit comments