micro/broker/broker.go

72 lines
1.7 KiB
Go
Raw Normal View History

package broker
2016-01-31 00:18:57 +03:00
// Broker is an interface used for asynchronous messaging.
// Its an abstraction over various message brokers
// {NATS, RabbitMQ, Kafka, ...}
type Broker interface {
Options() Options
Address() string
Connect() error
Disconnect() error
2015-12-23 22:07:26 +03:00
Init(...Option) error
Publish(string, *Message, ...PublishOption) error
Subscribe(string, Handler, ...SubscribeOption) (Subscriber, error)
2015-12-20 00:56:14 +03:00
String() string
}
2015-12-23 22:07:26 +03: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.
type Handler func(Publication) error
type Message struct {
Header map[string]string
Body []byte
}
2015-12-23 22:07:26 +03:00
// Publication is given to a subscription handler for processing
type Publication interface {
Topic() string
Message() *Message
Ack() error
}
// Subscriber is a convenience return type for the Subscribe method
type Subscriber interface {
Options() SubscribeOptions
Topic() string
Unsubscribe() error
}
var (
2016-03-16 01:12:28 +03:00
DefaultBroker Broker = newHttpBroker()
)
2016-03-16 01:12:28 +03:00
func NewBroker(opts ...Option) Broker {
return newHttpBroker(opts...)
}
2015-12-23 22:07:26 +03:00
func Init(opts ...Option) error {
return DefaultBroker.Init(opts...)
}
func Connect() error {
return DefaultBroker.Connect()
}
func Disconnect() error {
return DefaultBroker.Disconnect()
}
2015-12-23 22:07:26 +03:00
func Publish(topic string, msg *Message, opts ...PublishOption) error {
return DefaultBroker.Publish(topic, msg, opts...)
}
2015-12-23 22:07:26 +03:00
func Subscribe(topic string, handler Handler, opts ...SubscribeOption) (Subscriber, error) {
return DefaultBroker.Subscribe(topic, handler, opts...)
}
2015-12-20 00:56:14 +03:00
func String() string {
return DefaultBroker.String()
}