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

aroundExecuteRow() public method

public aroundExecuteRow ( Magento\Catalog\Model\Indexer\Product\Price $subject, Closure $proceed, integer $productId ) : void
$subject Magento\Catalog\Model\Indexer\Product\Price The Price indexer
$proceed Closure The ::executeRow() function of $subject
$productId integer The product id being reindexed
return void
    public function aroundExecuteRow(\Magento\Catalog\Model\Indexer\Product\Price $subject, \Closure $proceed, $productId)
    {
        $proceed($productId);
        $this->processFullTextIndex($productId);
        return;
    }