Documentation ¶
Overview ¶
Package rabbitmq provides a RabbitMQ broker
Index ¶
- Variables
- func AckOnSuccess() broker.SubscribeOption
- func DeliveryMode(value uint8) broker.PublishOption
- func DurableExchange() broker.Option
- func DurableQueue() broker.SubscribeOption
- func ExchangeName(e string) broker.Option
- func ExternalAuth() broker.Option
- func Headers(h map[string]interface{}) broker.SubscribeOption
- func NewBroker(opts ...broker.Option) broker.Broker
- func PrefetchCount(c int) broker.Option
- func PrefetchGlobal() broker.Option
- func Priority(value uint8) broker.PublishOption
- func QueueArguments(h map[string]interface{}) broker.SubscribeOption
- func RequeueOnError() broker.SubscribeOption
- func SubscribeContext(ctx context.Context) broker.SubscribeOption
- type Exchange
- type ExternalAuthentication
Constants ¶
This section is empty.
Variables ¶
var ( DefaultExchange = Exchange{ Name: "breeze", } DefaultRabbitURL = "amqp://guest:guest@127.0.0.1:5672" DefaultPrefetchCount = 0 DefaultPrefetchGlobal = false DefaultRequeueOnError = false )
Functions ¶
func AckOnSuccess ¶
func AckOnSuccess() broker.SubscribeOption
AckOnSuccess will automatically acknowledge messages when no error is returned
func DeliveryMode ¶
func DeliveryMode(value uint8) broker.PublishOption
DeliveryMode sets a delivery mode for publishing
func DurableExchange ¶
DurableExchange is an option to set the Exchange to be durable
func DurableQueue ¶
func DurableQueue() broker.SubscribeOption
DurableQueue creates a durable queue when subscribing.
func ExchangeName ¶
ExchangeName is an option to set the ExchangeName
func ExternalAuth ¶
func Headers ¶
func Headers(h map[string]interface{}) broker.SubscribeOption
Headers adds headers used by the headers exchange
func PrefetchGlobal ¶
PrefetchGlobal creates a durable queue when subscribing.
func Priority ¶
func Priority(value uint8) broker.PublishOption
Priority sets a priority level for publishing
func QueueArguments ¶
func QueueArguments(h map[string]interface{}) broker.SubscribeOption
QueueArguments sets arguments for queue creation
func RequeueOnError ¶
func RequeueOnError() broker.SubscribeOption
RequeueOnError calls Nack(muliple:false, requeue:true) on amqp delivery when handler returns error
func SubscribeContext ¶
func SubscribeContext(ctx context.Context) broker.SubscribeOption
SubscribeContext set the context for broker.SubscribeOption
Types ¶
type ExternalAuthentication ¶
type ExternalAuthentication struct { }
func (*ExternalAuthentication) Mechanism ¶
func (auth *ExternalAuthentication) Mechanism() string
func (*ExternalAuthentication) Response ¶
func (auth *ExternalAuthentication) Response() string