12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Mview;
- /**
- * Interface \Magento\Framework\Mview\ActionInterface
- *
- */
- interface ActionInterface
- {
- /**
- * Execute materialization on ids entities
- *
- * @param int[] $ids
- * @return void
- * @api
- */
- public function execute($ids);
- }
|