Viewing File: /home/maglabs/it/lib/internal/Magento/Framework/Mview/View/ChangelogBatchWalkerInterface.php
<?php declare(strict_types=1);
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Mview\View;
/**
* Interface \Magento\Framework\Mview\View\ChangelogBatchWalkerInterface
*
*/
interface ChangelogBatchWalkerInterface
{
/**
* Walk through batches
*
* @param ChangelogInterface $changelog
* @param int $fromVersionId
* @param int $lastVersionId
* @param int $batchSize
* @return iterable
*/
public function walk(
ChangelogInterface $changelog,
int $fromVersionId,
int $lastVersionId,
int $batchSize
): iterable;
}
Back to Directory
File Manager