IJobStore AcquireNextTriggers Method Quartz.NET 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: 2.2.1.400
Syntax

IList<IOperableTrigger> AcquireNextTriggers(
	DateTimeOffset noLaterThan,
	int maxCount,
	TimeSpan timeWindow
)

Parameters

noLaterThan
Type: System DateTimeOffset
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: System Int32

[Missing <param name="maxCount"/> documentation for "M:Quartz.Spi.IJobStore.AcquireNextTriggers(System.DateTimeOffset,System.Int32,System.TimeSpan)"]

timeWindow
Type: System TimeSpan

[Missing <param name="timeWindow"/> documentation for "M:Quartz.Spi.IJobStore.AcquireNextTriggers(System.DateTimeOffset,System.Int32,System.TimeSpan)"]

Return Value

Type: IList IOperableTrigger 

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

See Also