StreamRepositoryInterface.php 694 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Model\ResourceModel\EventStream;
  6. /**
  7. * Temando Shipment Stream Repository Interface.
  8. *
  9. *
  10. * @package Temando\Shipping\Model
  11. * @author Max Melzer <max.melzer@netresearch.de>
  12. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  13. * @link http://www.temando.com/
  14. */
  15. interface StreamRepositoryInterface
  16. {
  17. /**
  18. * @param string $streamId
  19. * @return void
  20. */
  21. public function save($streamId);
  22. /**
  23. * @param string $streamId
  24. * @return void
  25. */
  26. public function delete($streamId);
  27. }