예제 #1
0
파일: Barrier.php 프로젝트: mheydt/scalr
 function delete()
 {
     try {
         $this->zookeeper->deleteRecursive($this->path);
     } catch (Scalr_Service_Zookeeper_Exception $ignore) {
     }
 }
예제 #2
0
 function deleteNode()
 {
     $this->zookeeper->deleteRecursive("{$this->path}/{$this->node}");
 }
예제 #3
0
 /**
  * Delete queue and all her items 
  */
 function delete()
 {
     $this->zookeeper->deleteRecursive($this->path);
 }