INNER CODE UNIT · Go
WithFlag
alibaba/sentinel-golang · api/api.go:90
func WithFlag(flag int32) EntryOption {
return func(opts *EntryOptions) {
opts.flag = flag
}
}
// WithArgs sets the resource entry with the given additional parameters.
func WithArgs(args ...interface{}) EntryOption {
return func(opts *EntryOptions) {
opts.args = append(opts.args, args...)
}
}
// WithSlotChain sets the slot chain.
func WithSlotChain(chain *base.SlotChain) EntryOption {
return func(opts *EntryOptions) {
opts.slotChain = chain
}