mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-01-05 00:53:18 +09:00
Added info about misfire instruction into the scheduler config panel
This commit is contained in:
@@ -5,10 +5,21 @@
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Tot Repeat Num</label>
|
||||
<label>Max Occurrences</label>
|
||||
<input ng-model="config.maxCount" type="number" class="form-control"/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Misfire Policy</label>
|
||||
<div>RESCHEDULE NEXT WITH EXISTING COUNT</div>
|
||||
<div class="small">
|
||||
In case of misfire event, the trigger is re-scheduled to the next scheduled time after 'now' with the repeat count left unchanged (missed events are definitively lost).
|
||||
<br/>
|
||||
<strong>Warning:</strong> This policy could cause the trigger to go directly to the complete state if the end-time of the trigger has arrived,
|
||||
so this misfire instruction doesn't guarantee that the repeat counter reaches your max value, but it guarantees that the end-time doesn't go over the expected final fire time.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="button"
|
||||
ng-click="submitConfig()"
|
||||
class="btn btn-default">
|
||||
|
||||
Reference in New Issue
Block a user