From ef8f74bc4e02023e6843ddb4f8b9a5d52f4400b0 Mon Sep 17 00:00:00 2001 From: mausch Date: Thu, 29 Nov 2012 18:45:16 -0300 Subject: [PATCH] Remove "Trigger job with volatile", doesn't seem to be supported any more --- QuartzNetWebConsole.Views/Views.vb | 1 - QuartzNetWebConsole/Utils/SchedulerWrapper.cs | 4 ---- 2 files changed, 5 deletions(-) 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)); }