function DatabaseQueue::deleteItem
Deletes a finished item from the queue.
Parameters
$item: The item returned by \Drupal\Core\Queue\QueueInterface::claimItem().
Overrides QueueInterface::deleteItem
File
-
core/
lib/ Drupal/ Core/ Queue/ DatabaseQueue.php, line 205
Class
- DatabaseQueue
- Default queue implementation.
Namespace
Drupal\Core\QueueCode
public function deleteItem($item) {
try {
$this->connection
->delete(static::TABLE_NAME)
->condition('item_id', $item->item_id)
->execute();
} catch (\Exception $e) {
$this->catchException($e);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.