Skip to content

Latest commit

 

History

History
76 lines (49 loc) · 1.43 KB

README.md

File metadata and controls

76 lines (49 loc) · 1.43 KB

rabbit for Go

RabbitMQ Topic Subscriber for Go.

Installation

Dowload rabbit using go get

go get github.com/brettallred/rabbit

Import rabbit into your package

import github.com/brettallred/rabbit

Getting Started

rabbit for Go consists of Subscribers and Handlers. First you need to create a Subscriber

var subscriber = rabbit.Subscriber{
	Concurrency: 5,
	Durable:     true,
	Exchange:    "events",
	Queue:       "test.sample.event.created",
	RoutingKey:  "sample.event.created",
}

Next, you need to create a Handler that will handle the messages your subscriber receives

func sampleTestEventCreatedHandler(delivery amqp.Delivery) bool {
	log.Printf("%s", delivery.Body)
	return true
}

Now, register your Subscriber and Handler with rabbit

rabbit.Register(subscriber, sampleTestEventCreatedHandler)

Finally, fire up the subscribers

rabbit.StartSubscribers()

Publishing

rabbit includes a simple Publisher

publisher := rabbit.NewPublisher()
publisher.Publish("My Message", subscriber)

or, if you are publishing something that isn't a string

publisher.PublishBytes([]byte("My Message"), subscriber)

##Contributing

This is my first project in Go. Feedback and contributions are appreciated. Before submitting a Pull Request, please open an issue outlining the problem and the proposed enhancement. Please reference the issue in your Pull Request.