()
| 180 | } |
| 181 | |
| 182 | func (s *Scanner) blobScanLoopRuntime() *scanLoopRuntime { |
| 183 | return &scanLoopRuntime{ |
| 184 | mode: modeCheckBlob, |
| 185 | nextBatch: s.worker.getKvsInBatch, |
| 186 | interval: s.cfg.IntervalBlob, |
| 187 | batchSize: uint64(s.cfg.BatchSize), |
| 188 | nextIndex: 0, |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | func (s *Scanner) blockScanLoopRuntime() *scanLoopRuntime { |
| 193 | return &scanLoopRuntime{ |