IOperableTriggerComputeFirstFireTimeUtc Method

Quartz.NET 3.0 API Documentation
This method should not be used by the Quartz client.

Namespace:  Quartz.Spi
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
Nullable<DateTimeOffset> ComputeFirstFireTimeUtc(
	ICalendar calendar
)

Parameters

calendar
Type: QuartzICalendar

[Missing <param name="calendar"/> documentation for "M:Quartz.Spi.IOperableTrigger.ComputeFirstFireTimeUtc(Quartz.ICalendar)"]

Return Value

Type: NullableDateTimeOffset
The first time at which the ITrigger will be fired by the scheduler, which is also the same value GetNextFireTimeUtc will return (until after the first firing of the ITrigger).
Remarks

Called by the scheduler at the time a ITrigger is first added to the scheduler, in order to have the ITrigger compute its first fire time, based on any associated calendar.

After this method has been called, GetNextFireTimeUtc should return a valid answer.

See Also

Reference