本文整理汇总了C#中FluentScheduler.Model.Schedule类的典型用法代码示例。如果您正苦于以下问题:C# Schedule类的具体用法?C# Schedule怎么用?C# Schedule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Schedule类属于FluentScheduler.Model命名空间,在下文中一共展示了Schedule类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Should_Not_Alter_Original_Runtime_If_Chained_Task_Exists
public void Should_Not_Alter_Original_Runtime_If_Chained_Task_Exists()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunNow().AndEvery(1).Months();
Assert.IsNull(schedule.CalculateNextRun);
}
示例2: SecondUnit
public SecondUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
Schedule.CalculateNextRun = x => x.AddSeconds(Duration);
}
示例3: MinuteUnit
public MinuteUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
Schedule.CalculateNextRun = x => x.AddMinutes(Duration);
}
示例4: Should_Add_Chained_Tasks_To_AdditionalSchedules_Property
public void Should_Add_Chained_Tasks_To_AdditionalSchedules_Property()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunNow().AndEvery(1).Months();
Assert.AreEqual(schedule.AdditionalSchedules.Count, 1);
}
示例5: Should_Be_True_By_Default
public void Should_Be_True_By_Default()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunNow();
schedule.Reentrant.Should().Be.True();
}
示例6: MonthOnLastDayOfMonthUnit
public MonthOnLastDayOfMonthUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.Last();
return (x > nextRun) ? x.Date.First().AddMonths(Duration).Last() : x.Date.Last();
};
}
示例7: YearOnLastDayOfYearUnit
public YearOnLastDayOfYearUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.FirstOfYear().AddMonths(11).Last();
return (x > nextRun) ? x.Date.FirstOfYear().AddYears(Duration).AddMonths(11).Last() : nextRun;
};
}
示例8: YearUnit
public YearUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.AddYears(Duration);
return (x > nextRun) ? nextRun.AddYears(Duration) : nextRun;
};
}
示例9: YearOnDayOfYearUnit
public YearOnDayOfYearUnit(Schedule schedule, int duration, int dayOfYear)
{
Schedule = schedule;
Duration = duration;
DayOfYear = dayOfYear;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.FirstOfYear().AddDays(DayOfYear - 1);
return (x > nextRun) ? x.Date.FirstOfYear().AddYears(Duration).AddDays(DayOfYear - 1) : nextRun;
};
}
示例10: Should_Add_Specified_Days_To_Next_Run_Date
public void Should_Add_Specified_Days_To_Next_Run_Date()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunEvery(1).Days();
var input = new DateTime(2000, 1, 1, 1, 23, 25);
var scheduledTime = schedule.CalculateNextRun(input);
Assert.AreEqual(scheduledTime, input.Date.AddDays(1));
}
示例11: MonthOnDayOfMonthUnit
public MonthOnDayOfMonthUnit(Schedule schedule, int duration, int dayOfMonth)
{
Schedule = schedule;
Duration = duration;
DayOfMonth = dayOfMonth;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.First().AddDays(DayOfMonth - 1);
return (x > nextRun) ? x.Date.First().AddMonths(Duration).AddDays(DayOfMonth - 1) : nextRun;
};
}
示例12: Should_Add_Specified_Months_To_Next_Run_Date_And_Select_Specified_Day
public void Should_Add_Specified_Months_To_Next_Run_Date_And_Select_Specified_Day()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunEvery(2).Months().On(5);
var input = new DateTime(2000, 1, 6);
var scheduledTime = schedule.CalculateNextRun(input);
var expectedTime = new DateTime(2000, 3, 5);
scheduledTime.Should().Equal(expectedTime);
}
示例13: Should_Remove_Named_Task
public void Should_Remove_Named_Task()
{
var task = new Mock<ITask>();
var name = "ShouldRemoveTask";
var schedule = new Schedule(task.Object).WithName(name);
schedule.ToRunNow().AndEvery(1).Seconds();
TaskManager.RemoveTask(name);
var taskFromManager = TaskManager.GetSchedule(name);
Assert.IsNull(taskFromManager);
}
示例14: Should_Not_Fail_If_Specified_Day_Does_Not_Exist_In_Year
public void Should_Not_Fail_If_Specified_Day_Does_Not_Exist_In_Year()
{
var task = new Mock<ITask>();
var schedule = new Schedule(task.Object);
schedule.ToRunEvery(1).Years().On(400);
var input = new DateTime(2000, 1, 1);
var scheduledTime = schedule.CalculateNextRun(input);
var expectedTime = new DateTime(2001, 2, 3);
Assert.AreEqual(scheduledTime, expectedTime);
}
示例15: WeekUnit
public WeekUnit(Schedule schedule, int duration)
{
Schedule = schedule;
Duration = duration;
if (Duration < 0)
Duration = 0;
Schedule.CalculateNextRun = x => {
var nextRun = x.Date.AddDays(Duration * 7);
return (x > nextRun) ? nextRun.AddDays(Math.Max(Duration, 1) * 7) : nextRun;
};
}