You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/rq/internal/conf.go

20 lines
426 B
Go

4 years ago
package internal
4 years ago
import (
"zero/core/queue"
"zero/core/stores/redis"
)
type RedisKeyConf struct {
redis.RedisConf
Key string `json:",optional"`
}
func (rkc RedisKeyConf) NewProducer(opts ...ProducerOption) (queue.Producer, error) {
return newProducer(rkc.NewRedis(), rkc.Key, opts...)
}
func (rkc RedisKeyConf) NewPusher(opts ...PusherOption) queue.QueuePusher {
return NewPusher(rkc.NewRedis(), rkc.Key, opts...)
}