Browse Source
update: Add manual action to consumer handler
pull/105/head
Vishal Dubey
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
consume.go
|
|
|
@ -22,6 +22,8 @@ const ( |
|
|
|
NackDiscard |
|
|
|
// NackRequeue deliver this message to a different consumer.
|
|
|
|
NackRequeue |
|
|
|
// Message acknowledgement is left to the user using the msg.Ack() method
|
|
|
|
Manual |
|
|
|
) |
|
|
|
|
|
|
|
// Consumer allows you to create and connect to queues for data consumption.
|
|
|
|
|