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