<?php
namespace Magento\Bundle\Model\ResourceModel\Indexer\Price;

/**
 * Interceptor class for @see \Magento\Bundle\Model\ResourceModel\Indexer\Price
 */
class Interceptor extends \Magento\Bundle\Model\ResourceModel\Indexer\Price implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\IndexTableStructureFactory $indexTableStructureFactory, \Magento\Catalog\Model\Indexer\Product\Price\TableMaintainer $tableMaintainer, \Magento\Framework\EntityManager\MetadataPool $metadataPool, \Magento\Framework\App\ResourceConnection $resource, \Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\BasePriceModifier $basePriceModifier, \Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\Query\JoinAttributeProcessor $joinAttributeProcessor, \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Framework\Module\Manager $moduleManager, $fullReindexAction = false, $connectionName = 'indexer')
    {
        $this->___init();
        parent::__construct($indexTableStructureFactory, $tableMaintainer, $metadataPool, $resource, $basePriceModifier, $joinAttributeProcessor, $eventManager, $moduleManager, $fullReindexAction, $connectionName);
    }

    /**
     * {@inheritdoc}
     */
    public function executeByDimensions(array $dimensions, \Traversable $entityIds)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'executeByDimensions');
        return $pluginInfo ? $this->___callPlugins('executeByDimensions', func_get_args(), $pluginInfo) : parent::executeByDimensions($dimensions, $entityIds);
    }
}
