We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 621bf70 commit 9017c18Copy full SHA for 9017c18
lib/internal/Magento/Framework/Indexer/SaveHandler/EnhancedIndexerInterface.php
@@ -1,20 +1,30 @@
1
<?php
2
+/**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
7
namespace Magento\Framework\Indexer\SaveHandler;
8
9
interface EnhancedIndexerInterface extends IndexerInterface
10
{
11
/**
12
+ * Disable stacked queries mode
13
+ *
14
* @return void
15
*/
16
public function disableStackedActions(): void;
17
18
19
+ * Activates stacked actions mode
20
21
22
23
public function enableStackedActions(): void;
24
25
26
+ * Run stacked queries
27
28
29
30
public function triggerStackedActions(): void;
0 commit comments