Set the batch size (number of records to load at one time)
(mut self, batch_size: usize)
| 1198 | |
| 1199 | /// Set the batch size (number of records to load at one time) |
| 1200 | pub fn with_batch_size(mut self, batch_size: usize) -> Self { |
| 1201 | self.batch_size = batch_size; |
| 1202 | self |
| 1203 | } |
| 1204 | |
| 1205 | /// Set the bounds over which to scan the reader. |
| 1206 | /// `start` and `end` are line numbers. |
no outgoing calls