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

aroundExecute() public method

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