QueueGarbageCollectionInterface.php 322 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\Core\Queue;
  3. /**
  4. * If the Drupal 'queue' service implements this interface, the
  5. * garbageCollection() method will be called during cron.
  6. *
  7. * @see system_cron()
  8. */
  9. interface QueueGarbageCollectionInterface {
  10. /**
  11. * Cleans queues of garbage.
  12. */
  13. public function garbageCollection();
  14. }