Skip to content

Commit

Permalink
Remove "Trigger job with volatile", doesn't seem to be supported any …
Browse files Browse the repository at this point in the history
…more
  • Loading branch information
mausch committed Nov 29, 2012
1 parent 7f837ed commit ef8f74b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion QuartzNetWebConsole.Views/Views.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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) %>
</td>
</tr>
Expand Down
4 changes: 0 additions & 4 deletions QuartzNetWebConsole/Utils/SchedulerWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit ef8f74b

Please sign in to comment.