123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Indexer;
- /**
- * @api Implement custom Action Interface
- * @since 100.0.2
- */
- interface ActionInterface
- {
- /**
- * Execute full indexation
- *
- * @return void
- */
- public function executeFull();
- /**
- * Execute partial indexation by ID list
- *
- * @param int[] $ids
- * @return void
- */
- public function executeList(array $ids);
- /**
- * Execute partial indexation by ID
- *
- * @param int $id
- * @return void
- */
- public function executeRow($id);
- }
|