diff --git a/QuartzNetWebConsole.Views/Views.vb b/QuartzNetWebConsole.Views/Views.vb index eaa5366..ec894ef 100644 --- a/QuartzNetWebConsole.Views/Views.vb +++ b/QuartzNetWebConsole.Views/Views.vb @@ -305,7 +305,6 @@ Public Module Views <%= SimpleForm(op("PauseJob"), "Pause") %> <%= SimpleForm(op("ResumeJob"), "Resume") %> <%= SimpleForm(op("TriggerJob"), "Trigger") %> - <%= SimpleForm(op("TriggerJobWithVolatileTrigger"), "Trigger volatile") %> <%= If(j.Interruptible, SimpleForm(op("Interrupt"), "Interrupt"), Nothing) %> diff --git a/QuartzNetWebConsole/Utils/SchedulerWrapper.cs b/QuartzNetWebConsole/Utils/SchedulerWrapper.cs index 3e1d631..bf0d304 100644 --- a/QuartzNetWebConsole/Utils/SchedulerWrapper.cs +++ b/QuartzNetWebConsole/Utils/SchedulerWrapper.cs @@ -70,10 +70,6 @@ public void TriggerJob(string jobName, string groupName) { scheduler.TriggerJob(new JobKey(jobName, groupName)); } - public void TriggerJobWithVolatileTrigger(string jobName, string groupName) { - throw new NotSupportedException(); - } - public void Interrupt(string jobName, string groupName) { scheduler.Interrupt(new JobKey(jobName, groupName)); }