Get the currently configured batch size
(&self)
| 391 | |
| 392 | /// Get the currently configured batch size |
| 393 | pub fn batch_size(&self) -> usize { |
| 394 | self.options.execution.batch_size |
| 395 | } |
| 396 | |
| 397 | /// Enables or disables the coalescence of small batches into larger batches |
| 398 | pub fn with_coalesce_batches(mut self, enabled: bool) -> Self { |
no outgoing calls