- drupal
- drupal7
| Versionen | |
| drupal7 |
public SystemQueue::__construct($name) |
Verwandte Themen
- Queue operations
- The queue system allows placing items in a queue and processing them later.
The system tries to ensure that only one consumer can process an item.
Code
modules/system/system.queue.inc, line 177
<?php
public function __construct($name) {
$this->name = $name;
}
?>
Kommentare
Kommentar hinzufügen