Smile\ElasticsuiteCatalog\Plugin\Indexer\Price\ReindexProductsAfterPriceUpdate::aroundExecuteList PHP Method

aroundExecuteList() public method

public aroundExecuteList ( Magento\Catalog\Model\Indexer\Product\Price $subject, Closure $proceed, array $productIds ) : void
$subject Magento\Catalog\Model\Indexer\Product\Price The Price indexer
$proceed Closure The ::execute() function of $subject
$productIds array The product ids being reindexed
return void
    public function aroundExecuteList(\Magento\Catalog\Model\Indexer\Product\Price $subject, \Closure $proceed, array $productIds)
    {
        $proceed($productIds);
        $this->processFullTextIndex($productIds);
        return;
    }