C# Класс Castle.Components.Scheduler.DailyPeriodicWindowTrigger

something goes here...
Наследование: PeriodicTrigger
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : Trigger

Makes a deep clone of the trigger

DailyPeriodicWindowTrigger ( System.DateTime startDateUtc, System.DateTime endDateUtc, DailyFireWindow dailyFireWindow, System.TimeSpan period, int jobExecutionCount ) : System.Collections.Generic

Приватные методы

Метод Описание
CannotExecuteAgain ( ) : bool
EndTimeHasPassed ( System.DateTime timeBasisUtc ) : bool
ExecuteAction ( ) : TriggerScheduleAction
InDailyFireWindow ( System.DateTime timeBasisUtc ) : bool
ScheduleSuggestedAction ( TriggerScheduleAction action, System.DateTime timeBasisUtc ) : TriggerScheduleAction
SkipAction ( ) : TriggerScheduleAction
StartTimeHasPassed ( System.DateTime timeBasisUtc ) : bool
StopAction ( ) : TriggerScheduleAction

Описание методов

Clone() публичный Метод

Makes a deep clone of the trigger
public Clone ( ) : Trigger
Результат Trigger

DailyPeriodicWindowTrigger() публичный Метод

public DailyPeriodicWindowTrigger ( System.DateTime startDateUtc, System.DateTime endDateUtc, DailyFireWindow dailyFireWindow, System.TimeSpan period, int jobExecutionCount ) : System.Collections.Generic
startDateUtc System.DateTime The UTC date for the trigger to start firing
endDateUtc System.DateTime The UTC date for the trigger to stop firing
dailyFireWindow DailyFireWindow Specifies the UTC hours when the trigger should fire
period System.TimeSpan The recurrence period of the trigger. /// If the period is set to null, the trigger will fire exactly once /// and never recur.
jobExecutionCount int The number of job executions remaining before the trigger /// stops firing. This number is decremented each time the job executes /// until it reaches zero. If the count is set to null, the number of times the job /// may execute is unlimited.
Результат System.Collections.Generic