udemy-go-microservices/listener-service/main.go

57 lines
951 B
Go
Raw Normal View History

2024-09-05 11:50:34 +00:00
package main
import (
"fmt"
"log"
"math"
"os"
"time"
amqp "github.com/rabbitmq/amqp091-go"
)
func main() {
// try to connect to rabbitmq
rabbitConn, err := connect()
if err != nil {
log.Println(err)
os.Exit(1)
}
defer rabbitConn.Close()
log.Println("Connected to RabbitMQ")
// start listening for messages
// create consumer
// watch the queue and consume events
}
func connect() (*amqp.Connection, error) {
var counts int64
var connection *amqp.Connection
// don't continue until rabbit is ready
for {
c, err := amqp.Dial("amqp://guest:guest@localhost") // XXX: credentials
if err != nil {
fmt.Println("RabbitMQ not yet ready...")
counts++
} else {
connection = c
break
}
if counts > 5 {
fmt.Println(err)
return nil, err
}
backOff := time.Duration(math.Pow(float64(counts), 2) * float64(time.Second))
log.Println("backing off...")
time.Sleep(backOff)
}
return connection, nil
}