IJobStoreAcquireNextTriggers Method

Quartz.NET 3.0 API Documentation
Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.

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

C#
Task<IReadOnlyCollection<IOperableTrigger>> AcquireNextTriggers(
	DateTimeOffset noLaterThan,
	int maxCount,
	TimeSpan timeWindow,
	CancellationToken cancellationToken = null
)

Parameters

noLaterThan
Type: SystemDateTimeOffset
If > 0, the JobStore should only return a Trigger that will fire no later than the time represented in this value as milliseconds.
maxCount
Type: SystemInt32
timeWindow
Type: SystemTimeSpan
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskIReadOnlyCollectionIOperableTrigger

[Missing <returns> documentation for "M:Quartz.Spi.IJobStore.AcquireNextTriggers(System.DateTimeOffset,System.Int32,System.TimeSpan,System.Threading.CancellationToken)"]

See Also

Reference