Exemplo n.º 1
0
 function delete()
 {
     try {
         $this->zookeeper->deleteRecursive($this->path);
     } catch (Scalr_Service_Zookeeper_Exception $ignore) {
     }
 }
Exemplo n.º 2
0
 function deleteNode()
 {
     $this->zookeeper->deleteRecursive("{$this->path}/{$this->node}");
 }
Exemplo n.º 3
0
 /**
  * Delete queue and all her items 
  */
 function delete()
 {
     $this->zookeeper->deleteRecursive($this->path);
 }