]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Lock/SemaphoreLock.php
Merge pull request #8269 from MrPetovan/bug/frio-more-actions
[friendica.git] / src / Core / Lock / SemaphoreLock.php
index adfab5fc0e7d4a85eebe565f663567bae2093f8b..25bc9aa1d4a6201b24afa0e5138c8fdb6adf68bd 100644 (file)
@@ -1,10 +1,30 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Core\Lock;
 
-use Friendica\Core\Cache;
+use Friendica\Core\BaseLock;
+use Friendica\Core\Cache\Duration;
 
-class SemaphoreLock extends Lock
+class SemaphoreLock extends BaseLock
 {
        private static $semaphore = [];
 
@@ -36,7 +56,7 @@ class SemaphoreLock extends Lock
        /**
         * (@inheritdoc)
         */
-       public function acquireLock($key, $timeout = 120, $ttl = Cache\Cache::FIVE_MINUTES)
+       public function acquire($key, $timeout = 120, $ttl = Duration::FIVE_MINUTES)
        {
                self::$semaphore[$key] = sem_get(self::semaphoreKey($key));
                if (!empty(self::$semaphore[$key])) {
@@ -55,7 +75,7 @@ class SemaphoreLock extends Lock
         * @param bool $override not necessary parameter for semaphore locks since the lock lives as long as the execution
         *                       of the using function
         */
-       public function releaseLock($key, $override = false)
+       public function release($key, $override = false)
        {
                $success = false;
 
@@ -85,7 +105,7 @@ class SemaphoreLock extends Lock
         */
        public function getName()
        {
-               return self::TYPE_SEMAPHORE;
+               return Type::SEMAPHORE;
        }
 
        /**