b633a2d5a4 | ||
---|---|---|
_examples | ||
internal/test | ||
.gitignore | ||
.travis.yml | ||
Gopkg.lock | ||
Gopkg.toml | ||
LICENSE | ||
Makefile | ||
README.md | ||
event.go | ||
mgmt.go | ||
mgmt_test.go | ||
namespace.go | ||
namespace_test.go | ||
queue.go | ||
queue_test.go | ||
receiver.go | ||
sender.go | ||
session.go | ||
subscription.go | ||
subscription_test.go | ||
topic.go | ||
topic_test.go | ||
tracing.go |
README.md
Microsoft Azure Service Bus Client for Golang
Microsoft Azure Service Bus is a reliable cloud messaging service (MaaS) which simplifies enterprise cloud messaging. It enables developers to build scalable cloud solutions and implement complex messaging workflows over an efficient binary protocol called AMQP.
This library provides a simple interface for sending, receiving and managing Service Bus entities such as Queues, Topics and Subscriptions.
For more information about Service Bus, check out the Azure documentation.
This library is a pure Golang implementation of Azure Event Hubs over AMQP.
Preview of Service Bus for Golang
This library is currently a preview. There may be breaking interface changes until it reaches semantic version v1.0.0
.
If you run into an issue, please don't hesitate to log a
new issue or open a pull request.
Installing the library
To more reliably manage dependencies in your application we recommend golang/dep.
With dep:
dep ensure -add github.com/Azure/azure-service-bus-go
With go get:
go get -u github.com/Azure/azure-service-bus-go/...
If you need to install Go, follow the official instructions
Using Service Bus
In this section we'll cover some basics of the library to help you get started.
This library has two main dependencies, vcabbage/amqp and Azure AMQP Common. The former provides the AMQP protocol implementation and the latter provides some common authentication, persistence and request-response message flows.
Quick start
Let's send and receive "hello, world!"
.
// Connect
connStr := mustGetenv("SERVICEBUS_CONNECTION_STRING")
ns, err := servicebus.NewNamespace(servicebus.NamespaceWithConnectionString(connStr))
handleErr(err)
queueName := "helloworld"
// Create the queue if it doesn't exist
qm := ns.NewQueueManager()
_, err := qm.Put(context.Background(), queueName)
handleErr(err)
q := ns.NewQueue(queueName)
// Send message to queue
err := q.Send(context.Background(), servicebus.NewEventFromString("Hello World!"))
handleErr(err)
// Receive message from queue
listenHandle, err := q.Receive(context.Background())
defer listenHandle.Close(context.Background)
handleErr(err)
// Wait for a signal to quit:
signalChan := make(chan os.Signal, 1)
signal.Notify(signalChan, os.Interrupt, os.Kill)
<-signalChan
Examples
- HelloWorld: Producer and Consumer: an example of sending and receiving messages from a Service Bus Queue.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.