IJobStoreStoreCalendar Method

Quartz.NET 3.0 API Documentation
Store the given ICalendar.

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

C#
Task StoreCalendar(
	string name,
	ICalendar calendar,
	bool replaceExisting,
	bool updateTriggers,
	CancellationToken cancellationToken = null
)

Parameters

name
Type: SystemString
The name.
calendar
Type: QuartzICalendar
The ICalendar to be stored.
replaceExisting
Type: SystemBoolean
If , any ICalendar existing in the IJobStore with the same name and group should be over-written.
updateTriggers
Type: SystemBoolean
If , any ITriggers existing in the IJobStore that reference an existing Calendar with the same name with have their next fire time re-computed with the new ICalendar.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: Task

[Missing <returns> documentation for "M:Quartz.Spi.IJobStore.StoreCalendar(System.String,Quartz.ICalendar,System.Boolean,System.Boolean,System.Threading.CancellationToken)"]

See Also

Reference