Skip to content

Commit cc6aee8

Browse files
committed
Merge branch 'MAGETWO-67493' into develop-prs-isolated
2 parents 1a8dd8c + dc9689f commit cc6aee8

15 files changed

+24
-69
lines changed

app/code/Magento/Indexer/Model/Processor/Handler.php

Lines changed: 0 additions & 39 deletions
This file was deleted.

lib/internal/Magento/Framework/Indexer/ActionFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
*/
66
namespace Magento\Framework\Indexer;
77

8-
use Magento\Framework\Indexer\ActionInterface;
9-
108
class ActionFactory
119
{
1210
/**

lib/internal/Magento/Framework/Indexer/ActionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Magento\Framework\Indexer;
77

88
/**
9-
* @api
9+
* @api Implement custom Action Interface
1010
*/
1111
interface ActionInterface
1212
{

lib/internal/Magento/Framework/Indexer/BatchProviderInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
*
1414
* Can be used during indexation process to split large amount of data into batches
1515
* and process them one by one in order to reduce memory consumption and improve overall performance.
16+
*
17+
* @api retrieve Batches when implementing custom Indexer\Action
1618
*/
1719
interface BatchProviderInterface
1820
{

lib/internal/Magento/Framework/Indexer/FieldsetInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\Framework\Indexer;
77

8+
/**
9+
* @api Implement custom Fieldset
10+
*/
811
interface FieldsetInterface
912
{
1013
/**

lib/internal/Magento/Framework/Indexer/FieldsetPool.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
use Magento\Framework\ObjectManagerInterface;
99

10+
/**
11+
* @api Retrieve Fieldset when implementing custom Indexer\Action
12+
*/
1013
class FieldsetPool
1114
{
1215
/**

lib/internal/Magento/Framework/Indexer/FilterInterface.php

Lines changed: 0 additions & 14 deletions
This file was deleted.

lib/internal/Magento/Framework/Indexer/HandlerInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
use Magento\Framework\App\ResourceConnection\SourceProviderInterface;
99

10+
/**
11+
* @api Implement custom Handler
12+
*/
1013
interface HandlerInterface
1114
{
1215
/**

lib/internal/Magento/Framework/Indexer/HandlerPool.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
use Magento\Framework\Indexer\Handler\DefaultHandler;
99
use Magento\Framework\ObjectManagerInterface;
1010

11+
/**
12+
* @api Instantiate save handler when implementing custom Indexer\Action
13+
*/
1114
class HandlerPool
1215
{
1316
/**

lib/internal/Magento/Framework/Indexer/IndexerRegistry.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\Framework\Indexer;
77

8+
/**
9+
* @api Retrieve indexer by id, for example when indexer need to be invalidated
10+
*/
811
class IndexerRegistry
912
{
1013
/**

lib/internal/Magento/Framework/Indexer/SaveHandlerFactory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Magento\Framework\ObjectManagerInterface;
1010
use Magento\Framework\Indexer\SaveHandler\IndexerInterface as SaveHandlerInterface;
1111

12+
/**
13+
* @api Instantiate save handler when implementing custom Indexer\Action
14+
*/
1215
class SaveHandlerFactory
1316
{
1417
/**

lib/internal/Magento/Framework/Indexer/StateInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\Framework\Indexer;
77

8+
/**
9+
* @api Retrieve status of the Indexer
10+
*/
811
interface StateInterface
912
{
1013
/**

lib/internal/Magento/Framework/Indexer/Table/Strategy.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
*/
66
namespace Magento\Framework\Indexer\Table;
77

8-
/**
9-
* Class Strategy
10-
* @package Magento\Indexer
11-
*/
128
class Strategy implements StrategyInterface
139
{
1410
/**

lib/internal/Magento/Framework/Indexer/Table/StrategyInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66

77
namespace Magento\Framework\Indexer\Table;
88

9-
/**
10-
* Interface StrategyInterface
11-
* @package Magento\Indexer
12-
*/
139
interface StrategyInterface
1410
{
1511
const IDX_SUFFIX = '_idx';

lib/internal/Magento/Framework/Mview/View/SubscriptionFactory.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
*/
66
namespace Magento\Framework\Mview\View;
77

8-
/**
9-
* Class SubscriptionFactory
10-
* @package Magento\Framework\Mview\View
11-
*
12-
*/
138
class SubscriptionFactory extends AbstractFactory
149
{
1510
/**

0 commit comments

Comments
 (0)