示例#1
0
文件: Mcached.php 项目: horde/horde
 /**
  * Delete this object.
  *
  * @return NULL
  *
  * @throws Horde_Kolab_Server_Exception If deleting the object failed.
  */
 public function delete()
 {
     $this->_object->delete();
     /** Mark the object as missing */
     $this->_exists = false;
     /**
      * Throw away the cache data to ensure it gets refetched in case we need
      * to access it again
      */
     $this->_cache_ext = array();
     $this->_cache_int = array();
 }
示例#2
0
文件: Hash.php 项目: horde/horde
 /**
  * Delete this object.
  *
  * @return NULL
  *
  * @throws Horde_Kolab_Server_Exception If deleting the object failed.
  */
 public function delete()
 {
     $this->_object->delete();
 }