ClearableQueue.php
2 years ago
EntityNotFoundException.php
2 years ago
EntityResolver.php
2 years ago
Factory.php
2 years ago
Job.php
3 weeks ago
Monitor.php
3 weeks ago
Queue.php
3 weeks ago
QueueableCollection.php
3 weeks ago
QueueableEntity.php
2 years ago
ShouldBeEncrypted.php
2 years ago
ShouldBeUnique.php
2 years ago
ShouldBeUniqueUntilProcessing.php
2 years ago
ShouldQueue.php
2 years ago
QueueableCollection.php
33 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Queue; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface QueueableCollection |
| 7 | { |
| 8 | /** |
| 9 | * Get the type of the entities being queued. |
| 10 | * |
| 11 | * @return string|null |
| 12 | */ |
| 13 | public function getQueueableClass(); |
| 14 | /** |
| 15 | * Get the identifiers for all of the entities. |
| 16 | * |
| 17 | * @return array<int, mixed> |
| 18 | */ |
| 19 | public function getQueueableIds(); |
| 20 | /** |
| 21 | * Get the relationships of the entities being queued. |
| 22 | * |
| 23 | * @return array<int, string> |
| 24 | */ |
| 25 | public function getQueueableRelations(); |
| 26 | /** |
| 27 | * Get the connection of the entities being queued. |
| 28 | * |
| 29 | * @return string|null |
| 30 | */ |
| 31 | public function getQueueableConnection(); |
| 32 | } |
| 33 |