forked from mausch/QuartzNetWebConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using System; | ||
using Quartz; | ||
|
||
namespace QuartzNetWebConsole.Tests { | ||
public class DummyTrigger : ITrigger { | ||
public object Clone() { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public int CompareTo(ITrigger other) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public IScheduleBuilder GetScheduleBuilder() { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool GetMayFireAgain() { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public DateTimeOffset? GetNextFireTimeUtc() { | ||
return NextFireTimeUtc; | ||
} | ||
|
||
public DateTimeOffset? GetPreviousFireTimeUtc() { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public DateTimeOffset? GetFireTimeAfter(DateTimeOffset? afterTime) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public DateTimeOffset? NextFireTimeUtc { get; set; } | ||
public TriggerKey Key { get; set; } | ||
public JobKey JobKey { get; set; } | ||
public string Description { get; set; } | ||
public string CalendarName { get; set; } | ||
public JobDataMap JobDataMap { get; set; } | ||
public DateTimeOffset? FinalFireTimeUtc { get; set; } | ||
public int MisfireInstruction { get; set; } | ||
public DateTimeOffset? EndTimeUtc { get; set; } | ||
public DateTimeOffset StartTimeUtc { get; set; } | ||
public int Priority { get; set; } | ||
public bool HasMillisecondPrecision { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters