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

aroundExecute() public method

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