You are here

public function WebformSubmissionExporter::getBatchLimit in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformSubmissionExporter.php \Drupal\webform\WebformSubmissionExporter::getBatchLimit()

Get the number of submissions to be exported with each batch.

Return value

int Number of submissions to be exported with each batch.

Overrides WebformSubmissionExporterInterface::getBatchLimit

2 calls to WebformSubmissionExporter::getBatchLimit()
WebformSubmissionExporter::isBatch in src/WebformSubmissionExporter.php
Determine if export needs to use batch processing.
WebformSubmissionExporter::requiresBatch in src/WebformSubmissionExporter.php
Determine if webform submissions must be exported using batch processing.

File

src/WebformSubmissionExporter.php, line 1004

Class

WebformSubmissionExporter
Webform submission exporter.

Namespace

Drupal\webform

Code

public function getBatchLimit() {
  return $this
    ->getExporter()
    ->getBatchLimit();
}