blob: 00c2c80e793ca444c0ff731ebc301de19c032082 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package producer
import (
"time"
"github.com/apache/rocketmq-client-go/internal"
"github.com/apache/rocketmq-client-go/primitive"
)
func defaultProducerOptions() producerOptions {
opts := producerOptions{
ClientOptions: internal.DefaultClientOptions(),
Selector: NewHashQueueSelector(),
SendMsgTimeout: 3 * time.Second,
}
opts.ClientOptions.GroupName = "DEFAULT_CONSUMER"
return opts
}
type producerOptions struct {
internal.ClientOptions
Selector QueueSelector
SendMsgTimeout time.Duration
}
type Option func(*producerOptions)
// WithGroupName set group name address
func WithGroupName(group string) Option {
return func(opts *producerOptions) {
if group == "" {
return
}
opts.GroupName = group
}
}
func WithInstanceName(name string) Option {
return func(opts *producerOptions) {
opts.InstanceName = name
}
}
// WithNameServer set NameServer address, only support one NameServer cluster in alpha2
func WithNameServer(nameServers primitive.NamesrvAddr) Option {
return func(opts *producerOptions) {
opts.NameServerAddrs = nameServers
}
}
// WithNamespace set the namespace of producer
func WithNamespace(namespace string) Option {
return func(opts *producerOptions) {
opts.Namespace = namespace
}
}
func WithSendMsgTimeout(duration time.Duration) Option {
return func(opts *producerOptions) {
opts.SendMsgTimeout = duration
}
}
func WithVIPChannel(enable bool) Option {
return func(opts *producerOptions) {
opts.VIPChannelEnabled = enable
}
}
// WithRetry return a Option that specifies the retry times when send failed.
// TODO: use retry middleware instead
func WithRetry(retries int) Option {
return func(opts *producerOptions) {
opts.RetryTimes = retries
}
}
func WithInterceptor(f ...primitive.Interceptor) Option {
return func(opts *producerOptions) {
opts.Interceptors = append(opts.Interceptors, f...)
}
}
func WithQueueSelector(s QueueSelector) Option {
return func(options *producerOptions) {
options.Selector = s
}
}
func WithCredentials(c primitive.Credentials) Option {
return func(options *producerOptions) {
options.ClientOptions.Credentials = c
}
}