summaryrefslogtreecommitdiffstats
path: root/modules/task/queue.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/task/queue.go')
-rw-r--r--modules/task/queue.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/task/queue.go b/modules/task/queue.go
new file mode 100644
index 0000000000..ddee0b3d46
--- /dev/null
+++ b/modules/task/queue.go
@@ -0,0 +1,14 @@
+// Copyright 2019 Gitea. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package task
+
+import "code.gitea.io/gitea/models"
+
+// Queue defines an interface to run task queue
+type Queue interface {
+ Run() error
+ Push(*models.Task) error
+ Stop()
+}