Jamm\Memory\CouchbaseObject::unlock_key PHP 메소드

unlock_key() 공개 메소드

Unlock key, locked by method 'lock_key'
public unlock_key ( KeyAutoUnlocker $auto_unlocker ) : boolean
$auto_unlocker KeyAutoUnlocker
리턴 boolean
    public function unlock_key(KeyAutoUnlocker $auto_unlocker)
    {
        $key = $auto_unlocker->getKey();
        $auto_unlocker->revoke();
        return $this->Couchbase->delete($this->lock_key_prefix . $key);
    }