summaryrefslogtreecommitdiff
path: root/local.go
diff options
context:
space:
mode:
Diffstat (limited to 'local.go')
-rw-r--r--local.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/local.go b/local.go
index 615f9a6..24c7562 100644
--- a/local.go
+++ b/local.go
@@ -16,6 +16,7 @@ import (
)
const qidPre = "queuePre"
+const qidPreNoWipe = "queuePreNoWipe"
const qidWipe = "queueWipe"
const qidOCR = "queueOCR"
const qidAnalyse = "queueAnalyse"
@@ -114,6 +115,10 @@ func (a *LocalConn) PreQueueId() string {
return qidPre
}
+func (a *LocalConn) PreNoWipeQueueId() string {
+ return qidPreNoWipe
+}
+
func (a *LocalConn) WipeQueueId() string {
return qidWipe
}