public function MemoryQueue::__construct in Drupal 7
Start working with a queue.
Parameters
$name: Arbitrary string. The name of the queue to work with.
File
- modules/
system/ system.queue.inc, line 317 - Queue functionality.
Class
- MemoryQueue
- Static queue implementation.
Code
public function __construct($name) {
$this->queue = array();
$this->id_sequence = 0;
}