micro/broker/broker.go

40 lines
1.0 KiB
Go
Raw Normal View History

2016-12-14 15:41:48 +00:00
// Package broker is an interface used for asynchronous messaging
package broker
2016-01-30 21:18:57 +00:00
// Broker is an interface used for asynchronous messaging.
type Broker interface {
2019-07-07 12:33:47 +01:00
Init(...Option) error
Options() Options
2019-07-10 19:58:30 +01:00
Address() string
Connect() error
Disconnect() error
2019-07-07 12:36:14 +01:00
Publish(topic string, m *Message, opts ...PublishOption) error
Subscribe(topic string, h Handler, opts ...SubscribeOption) (Subscriber, error)
2015-12-19 21:56:14 +00:00
String() string
}
2015-12-23 19:07:26 +00:00
// Handler is used to process messages via a subscription of a topic.
// The handler is passed a publication interface which contains the
// message and optional Ack method to acknowledge receipt of the message.
2019-07-07 12:44:09 +01:00
type Handler func(Event) error
type Message struct {
Header map[string]string
Body []byte
}
2019-07-07 12:44:09 +01:00
// Event is given to a subscription handler for processing
type Event interface {
2015-12-23 19:07:26 +00:00
Topic() string
Message() *Message
Ack() error
Error() error
2015-12-23 19:07:26 +00:00
}
// Subscriber is a convenience return type for the Subscribe method
type Subscriber interface {
Options() SubscribeOptions
Topic() string
Unsubscribe() error
}