forked from mausch/QuartzNetWebConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractLogger.cs
More file actions
119 lines (86 loc) · 3.36 KB
/
Copy pathAbstractLogger.cs
File metadata and controls
119 lines (86 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Quartz;
using QuartzNetWebConsole.Views;
namespace QuartzNetWebConsole {
public abstract class AbstractLogger : ILogger {
public virtual void JobToBeExecuted(IJobExecutionContext context) {
throw new NotImplementedException();
}
public virtual void JobExecutionVetoed(IJobExecutionContext context) {
throw new NotImplementedException();
}
public virtual void JobWasExecuted(IJobExecutionContext context, JobExecutionException jobException) {
throw new NotImplementedException();
}
public virtual void TriggerComplete(ITrigger trigger, IJobExecutionContext context, SchedulerInstruction triggerInstructionCode) {
throw new NotImplementedException();
}
string IJobListener.Name {
get { return "QuartzNetWebConsole.Logger"; }
}
public virtual void TriggerFired(ITrigger trigger, IJobExecutionContext context) {
throw new NotImplementedException();
}
public bool VetoJobExecution(ITrigger trigger, IJobExecutionContext context) {
return false;
}
public virtual void TriggerMisfired(ITrigger trigger) {
throw new NotImplementedException();
}
string ITriggerListener.Name {
get { return "QuartzNetWebConsole.Logger"; }
}
public abstract IEnumerator<LogEntry> GetEnumerator();
IEnumerator IEnumerable.GetEnumerator() {
return GetEnumerator();
}
public abstract Expression Expression { get; }
public abstract Type ElementType { get; }
public abstract IQueryProvider Provider { get; }
public abstract void Add(string msg);
public virtual void JobScheduled(ITrigger trigger) {
}
public virtual void JobUnscheduled(TriggerKey triggerKey) {
}
public virtual void TriggerFinalized(ITrigger trigger) {
}
public virtual void TriggerPaused(TriggerKey triggerKey) {
}
public virtual void TriggersPaused(string triggerGroup) {
}
public virtual void TriggerResumed(TriggerKey triggerKey) {
}
public virtual void TriggersResumed(string triggerGroup) {
}
public virtual void JobAdded(IJobDetail jobDetail) {
}
public virtual void JobDeleted(JobKey jobKey) {
}
public virtual void JobPaused(JobKey jobKey) {
}
public virtual void JobsPaused(string jobGroup) {
}
public virtual void JobResumed(JobKey jobKey) {
}
public virtual void JobsResumed(string jobGroup) {
}
public virtual void SchedulerError(string msg, SchedulerException cause) {
}
public virtual void SchedulerInStandbyMode() {
}
public virtual void SchedulerStarted() {
}
public virtual void SchedulerStarting() {
}
public virtual void SchedulerShutdown() {
}
public virtual void SchedulerShuttingdown() {
}
public virtual void SchedulingDataCleared() {
}
}
}