diff options
Diffstat (limited to 'priority_queue/interface.go')
-rw-r--r-- | priority_queue/interface.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/priority_queue/interface.go b/priority_queue/interface.go index 9efa4652..42510f96 100644 --- a/priority_queue/interface.go +++ b/priority_queue/interface.go @@ -19,13 +19,4 @@ type Item interface { // Context is the Item meta information Context() ([]byte, error) - - // Ack - acknowledge the Item after processing - Ack() error - - // Nack - discard the Item - Nack() error - - // Requeue - put the message back to the queue with the optional delay - Requeue(headers map[string][]string, delay int64) error } |