Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function SystemQueue::numberOfItems

Retrieve the number of items in the queue.

This is intended to provide a "best guess" count of the number of items in the queue. Depending on the implementation and the setup, the accuracy of the results of this function may vary.

e.g. On a busy system with a large number of consumers and items, the result might only be valid for a fraction of a second and not provide an accurate representation.

Return value

An integer estimate of the number of items in the queue.

Overrides DrupalQueueInterface::numberOfItems

File

modules/system/system.queue.inc, line 224

Class

SystemQueue
Default queue implementation.

Code

public function numberOfItems() {
 return db_query ('SELECT COUNT(item_id) FROM {queue} WHERE name = :name', array(
 ':name' => $this->name ,
 ))
 ->fetchField ();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.