QueueGarbageCollectionInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Core\QueueFile
core/lib/Drupal/Core/Queue/QueueGarbageCollectionInterface.phpView source
<?php
namespace Drupal\Core\Queue;
/**
* If the Drupal 'queue' service implements this interface, the
* garbageCollection() method will be called during cron.
*
* @see system_cron()
*/
interface QueueGarbageCollectionInterface {
/**
* Cleans queues of garbage.
*/
public function garbageCollection();
}
Interfaces
Name | Description |
---|---|
QueueGarbageCollectionInterface | If the Drupal 'queue' service implements this interface, the garbageCollection() method will be called during cron. |