ActionInterface.php 398 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Mview;
  7. /**
  8. * Interface \Magento\Framework\Mview\ActionInterface
  9. *
  10. */
  11. interface ActionInterface
  12. {
  13. /**
  14. * Execute materialization on ids entities
  15. *
  16. * @param int[] $ids
  17. * @return void
  18. * @api
  19. */
  20. public function execute($ids);
  21. }