Smile\ElasticsuiteCatalog\Plugin\Indexer\Stock\ReindexProductsAfterStockUpdate::aroundExecuteRow PHP Method

aroundExecuteRow() public method

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