OperationRepositoryInterface.php 767 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\AsynchronousOperations\Api;
  8. /**
  9. * Bulk operation item repository interface.
  10. *
  11. * An bulk is a group of queue messages. An bulk operation item is a queue message.
  12. * @api
  13. * @since 100.3.0
  14. */
  15. interface OperationRepositoryInterface
  16. {
  17. /**
  18. * Lists the bulk operation items that match specified search criteria.
  19. *
  20. * @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
  21. * @return \Magento\AsynchronousOperations\Api\Data\OperationSearchResultsInterface
  22. * @since 100.3.0
  23. */
  24. public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria);
  25. }