You are here

public function WebformIteratorAggregate::__construct in Webform Scheduled Tasks 8.2

WebformIteratorAggregate constructor.

File

src/Iterator/WebformIteratorAggregate.php, line 37

Class

WebformIteratorAggregate
The WebformIteratorAggregate class.

Namespace

Drupal\webform_scheduled_tasks\Iterator

Code

public function __construct($submissionIds, $chunkSize, ContentEntityStorageInterface $submissionStorage) {
  $this->submissionIds = $submissionIds;
  $this->chunkSize = $chunkSize;
  $this->submissionStorage = $submissionStorage;
}