Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rabbitmq-tutorials/go/worker.go
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
69 lines (58 sloc)
1.35 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"log" | |
"time" | |
amqp "github.com/rabbitmq/amqp091-go" | |
) | |
func failOnError(err error, msg string) { | |
if err != nil { | |
log.Panicf("%s: %s", msg, err) | |
} | |
} | |
func main() { | |
conn, err := amqp.Dial("amqp://guest:guest@localhost:5672/") | |
failOnError(err, "Failed to connect to RabbitMQ") | |
defer conn.Close() | |
ch, err := conn.Channel() | |
failOnError(err, "Failed to open a channel") | |
defer ch.Close() | |
q, err := ch.QueueDeclare( | |
"task_queue", // name | |
true, // durable | |
false, // delete when unused | |
false, // exclusive | |
false, // no-wait | |
nil, // arguments | |
) | |
failOnError(err, "Failed to declare a queue") | |
err = ch.Qos( | |
1, // prefetch count | |
0, // prefetch size | |
false, // global | |
) | |
failOnError(err, "Failed to set QoS") | |
msgs, err := ch.Consume( | |
q.Name, // queue | |
"", // consumer | |
false, // auto-ack | |
false, // exclusive | |
false, // no-local | |
false, // no-wait | |
nil, // args | |
) | |
failOnError(err, "Failed to register a consumer") | |
var forever chan struct{} | |
go func() { | |
for d := range msgs { | |
log.Printf("Received a message: %s", d.Body) | |
dotCount := bytes.Count(d.Body, []byte(".")) | |
t := time.Duration(dotCount) | |
time.Sleep(t * time.Second) | |
log.Printf("Done") | |
d.Ack(false) | |
} | |
}() | |
log.Printf(" [*] Waiting for messages. To exit press CTRL+C") | |
<-forever | |
} |