micro/client/selector/registry/options.go

19 lines
339 B
Go
Raw Normal View History

package registry
2016-05-03 21:26:50 +03:00
import (
2018-03-03 14:53:52 +03:00
"context"
2016-05-03 21:26:50 +03:00
"time"
"github.com/micro/go-micro/v2/client/selector"
2016-05-03 21:26:50 +03:00
)
// Set the registry cache ttl
2016-05-03 21:26:50 +03:00
func TTL(t time.Duration) selector.Option {
return func(o *selector.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, "selector_ttl", t)
2016-05-03 21:26:50 +03:00
}
}