Elgg  Version 1.9
Queue.php
Go to the documentation of this file.
1 <?php
2 
14 interface Elgg_Queue_Queue {
21  public function enqueue($item);
22 
28  public function dequeue();
29 
35  public function clear();
36 
42  public function size();
43 }
dequeue()
Remove an item from the queue.
clear()
Clear all items from the queue.
enqueue($item)
Add an item to the queue.
$item
Definition: item.php:12
size()
Get the size of the queue.