(maxWriteRecordCount int64)
| 287 | } |
| 288 | |
| 289 | func WithMaxWriteRecordCount(maxWriteRecordCount int64) Option { |
| 290 | return func(opt *Options) { |
| 291 | opt.MaxWriteRecordCount = maxWriteRecordCount |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | func WithEnableHintFile(enable bool) Option { |
| 296 | return func(opt *Options) { |
no outgoing calls