summaryrefslogtreecommitdiffstats
path: root/model/job.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-07-26 17:39:51 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-07-26 17:39:51 -0400
commitf5375254f90053bd9b688d36f758aca309ec3735 (patch)
tree45ec76d772286305269c5006d67be267e63bbb41 /model/job.go
parent528890dba01d6835754c78bf7695621c828b6838 (diff)
downloadchat-f5375254f90053bd9b688d36f758aca309ec3735.tar.gz
chat-f5375254f90053bd9b688d36f758aca309ec3735.tar.bz2
chat-f5375254f90053bd9b688d36f758aca309ec3735.zip
Adding migration support to LDAP from other account types (#3655)
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",