QueueableCollection.php 510 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Illuminate\Contracts\Queue;
  3. interface QueueableCollection
  4. {
  5. /**
  6. * Get the type of the entities being queued.
  7. *
  8. * @return string|null
  9. */
  10. public function getQueueableClass();
  11. /**
  12. * Get the identifiers for all of the entities.
  13. *
  14. * @return array
  15. */
  16. public function getQueueableIds();
  17. /**
  18. * Get the connection of the entities being queued.
  19. *
  20. * @return string|null
  21. */
  22. public function getQueueableConnection();
  23. }