mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-17 17:44:30 +02:00
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package nats
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-micro.dev/v4/registry"
|
|
"github.com/nats-io/nats.go"
|
|
)
|
|
|
|
type contextQuorumKey struct{}
|
|
type optionsKey struct{}
|
|
type watchTopicKey struct{}
|
|
type queryTopicKey struct{}
|
|
|
|
var (
|
|
DefaultQuorum = 0
|
|
)
|
|
|
|
func getQuorum(o registry.Options) int {
|
|
if o.Context == nil {
|
|
return DefaultQuorum
|
|
}
|
|
|
|
value := o.Context.Value(contextQuorumKey{})
|
|
if v, ok := value.(int); ok {
|
|
return v
|
|
} else {
|
|
return DefaultQuorum
|
|
}
|
|
}
|
|
|
|
func Quorum(n int) registry.Option {
|
|
return func(o *registry.Options) {
|
|
o.Context = context.WithValue(o.Context, contextQuorumKey{}, n)
|
|
}
|
|
}
|
|
|
|
// Options allow to inject a nats.Options struct for configuring
|
|
// the nats connection
|
|
func Options(nopts nats.Options) registry.Option {
|
|
return func(o *registry.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, optionsKey{}, nopts)
|
|
}
|
|
}
|
|
|
|
// QueryTopic allows to set a custom nats topic on which service registries
|
|
// query (survey) other services. All registries listen on this topic and
|
|
// then respond to the query message.
|
|
func QueryTopic(s string) registry.Option {
|
|
return func(o *registry.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, queryTopicKey{}, s)
|
|
}
|
|
}
|
|
|
|
// WatchTopic allows to set a custom nats topic on which registries broadcast
|
|
// changes (e.g. when services are added, updated or removed). Since we don't
|
|
// have a central registry service, each service typically broadcasts in a
|
|
// determined frequency on this topic.
|
|
func WatchTopic(s string) registry.Option {
|
|
return func(o *registry.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, watchTopicKey{}, s)
|
|
}
|
|
}
|