1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
go-micro/broker/broker.go

68 lines
1.6 KiB
Go
Raw Normal View History

2016-12-14 17:41:48 +02:00
// Package broker is an interface used for asynchronous messaging
package broker
2016-01-30 23:18:57 +02:00
// Broker is an interface used for asynchronous messaging.
type Broker interface {
2019-07-07 13:33:47 +02:00
Init(...Option) error
Options() Options
2019-07-10 20:58:30 +02:00
Address() string
Connect() error
Disconnect() error
2019-07-07 13:36:14 +02:00
Publish(topic string, m *Message, opts ...PublishOption) error
Subscribe(topic string, h Handler, opts ...SubscribeOption) (Subscriber, error)
2015-12-19 23:56:14 +02:00
String() string
}
2015-12-23 21:07:26 +02: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 13:44:09 +02:00
type Handler func(Event) error
type Message struct {
Header map[string]string
Body []byte
}
2019-07-07 13:44:09 +02:00
// Event is given to a subscription handler for processing
type Event interface {
2015-12-23 21:07:26 +02:00
Topic() string
Message() *Message
Ack() error
Error() error
2015-12-23 21:07:26 +02:00
}
// Subscriber is a convenience return type for the Subscribe method
type Subscriber interface {
Options() SubscribeOptions
Topic() string
Unsubscribe() error
}
var (
2020-01-19 02:55:01 +02:00
DefaultBroker Broker = NewBroker()
)
2015-12-23 21:07:26 +02: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 21:07:26 +02:00
func Publish(topic string, msg *Message, opts ...PublishOption) error {
return DefaultBroker.Publish(topic, msg, opts...)
}
2015-12-23 21:07:26 +02:00
func Subscribe(topic string, handler Handler, opts ...SubscribeOption) (Subscriber, error) {
return DefaultBroker.Subscribe(topic, handler, opts...)
}
2015-12-19 23:56:14 +02:00
func String() string {
return DefaultBroker.String()
}