Here you can find Go code examples from RabbitMQ tutorials.
These examples use the rabbitmq/amqp091-go
client library.
Get it first with
go get github.com/rabbitmq/amqp091-go
Code examples are executed via go run
:
go run send.go
go run receive.go
go run new_task.go hello world
go run worker.go
Tutorial three: Publish/Subscribe
go run receive_logs.go
go run emit_log.go hello world
go run receive_logs_direct.go info warn
go run emit_log_direct.go warn "a warning"
go run receive_logs_topic.go "kern.*" "*.critical"
go run emit_log_topic.go kern.critical "A critical kernel error"
go run rpc_server.go
go run rpc_client.go 10
To learn more, see rabbitmq/amqp091-go
.