INNER CODE UNIT · Go
WithBatchCount
alibaba/sentinel-golang · api/api.go:83
func WithBatchCount(batchCount uint32) EntryOption {
return func(opts *EntryOptions) {
opts.batchCount = batchCount
}
}
// WithFlag sets the resource entry with the given additional flag.
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...)
}