C# Class FluentScheduler.YearUnit

Unit of time in years.
显示文件 Open project: fluentscheduler/FluentScheduler Class Usage Examples

Private Properties

Property Type Description
YearUnit

Public Methods

Method Description
On ( int day ) : YearOnDayOfYearUnit

Runs the job on the given day of the year. If the day has passed it schedules to the next year.

OnTheLastDay ( ) : YearOnLastDayOfYearUnit

Runs the job on the last day of the year.

Private Methods

Method Description
YearUnit ( Schedule schedule, int duration )

Method Details

On() public method

Runs the job on the given day of the year. If the day has passed it schedules to the next year.
public On ( int day ) : YearOnDayOfYearUnit
day int Day of the year to run the job.
return YearOnDayOfYearUnit

OnTheLastDay() public method

Runs the job on the last day of the year.
public OnTheLastDay ( ) : YearOnLastDayOfYearUnit
return YearOnLastDayOfYearUnit