/**
  * Check whether the lock exists
  *
  * @param string $lockName
  * @return bool
  */
 public function isLockExists($lockName)
 {
     $lockName = $this->_prepareLockName($lockName);
     return $this->_helper->isLocked($lockName);
 }
Esempio n. 2
0
 /**
  * Check whether the lock exists
  *
  * @param string $lockName
  * @return bool
  */
 public function isLockExists($lockName)
 {
     return $this->_helper->isLocked($lockName);
 }