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