summaryrefslogtreecommitdiffstats
path: root/model/job.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/job.go')
-rw-r--r--model/job.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/model/job.go b/model/job.go
index b6c68dce4..229d5efd3 100644
--- a/model/job.go
+++ b/model/job.go
@@ -84,6 +84,12 @@ func (task *ScheduledTask) Cancel() {
removeTaskByName(task.Name)
}
+// Executes the task immediatly. A recurring task will be run regularally after interval.
+func (task *ScheduledTask) Execute() {
+ task.function()
+ task.timer.Reset(task.Interval)
+}
+
func (task *ScheduledTask) String() string {
return fmt.Sprintf(
"%s\nInterval: %s\nRecurring: %t\n",