Your IP : 216.73.216.208


Current Path : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/Mview/View/
Upload File :
Current File : /home/m/a/g/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;
}

?>