mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
package nsq
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/asim/go-micro/v3/broker"
|
|
nsq "github.com/nsqio/go-nsq"
|
|
)
|
|
|
|
type concurrentHandlerKey struct{}
|
|
type maxInFlightKey struct{}
|
|
type asyncPublishKey struct{}
|
|
type deferredPublishKey struct{}
|
|
type lookupdAddrsKey struct{}
|
|
type consumerOptsKey struct{}
|
|
|
|
func WithConcurrentHandlers(n int) broker.SubscribeOption {
|
|
return func(o *broker.SubscribeOptions) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, concurrentHandlerKey{}, n)
|
|
}
|
|
}
|
|
|
|
func WithMaxInFlight(n int) broker.SubscribeOption {
|
|
return func(o *broker.SubscribeOptions) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, maxInFlightKey{}, n)
|
|
}
|
|
}
|
|
|
|
func WithAsyncPublish(doneChan chan *nsq.ProducerTransaction) broker.PublishOption {
|
|
return func(o *broker.PublishOptions) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, asyncPublishKey{}, doneChan)
|
|
}
|
|
}
|
|
|
|
func WithDeferredPublish(delay time.Duration) broker.PublishOption {
|
|
return func(o *broker.PublishOptions) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, deferredPublishKey{}, delay)
|
|
}
|
|
}
|
|
|
|
func WithLookupdAddrs(addrs []string) broker.Option {
|
|
return func(o *broker.Options) {
|
|
o.Context = context.WithValue(o.Context, lookupdAddrsKey{}, addrs)
|
|
}
|
|
}
|
|
|
|
func WithConsumerOpts(consumerOpts []string) broker.Option {
|
|
return func(o *broker.Options) {
|
|
o.Context = context.WithValue(o.Context, consumerOptsKey{}, consumerOpts)
|
|
}
|
|
}
|