X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/laravel/framework/src/Illuminate/Cache
home
/
prisjneg
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
📁
..
📄
ApcStore.php
(2.46 KB)
📄
ApcWrapper.php
(1.93 KB)
📄
ArrayLock.php
(2.1 KB)
📄
ArrayStore.php
(4.67 KB)
📄
CacheLock.php
(1.79 KB)
📄
CacheManager.php
(10.64 KB)
📄
CacheServiceProvider.php
(1.32 KB)
📁
Console
📄
DatabaseLock.php
(3.76 KB)
📄
DatabaseStore.php
(10.78 KB)
📄
DynamoDbLock.php
(1.54 KB)
📄
DynamoDbStore.php
(14.6 KB)
📁
Events
📄
FileLock.php
(271 B)
📄
FileStore.php
(9.67 KB)
📄
HasCacheLock.php
(681 B)
📄
LICENSE.md
(1.05 KB)
📄
Lock.php
(3.5 KB)
📄
LuaScripts.php
(462 B)
📄
MemcachedConnector.php
(2.33 KB)
📄
MemcachedLock.php
(1.42 KB)
📄
MemcachedStore.php
(6.18 KB)
📄
NoLock.php
(692 B)
📄
NullStore.php
(2.34 KB)
📄
PhpRedisLock.php
(829 B)
📄
RateLimiter.php
(5.29 KB)
📁
RateLimiting
📄
RedisLock.php
(1.73 KB)
📄
RedisStore.php
(10.14 KB)
📄
RedisTagSet.php
(3.13 KB)
📄
RedisTaggedCache.php
(3.03 KB)
📄
Repository.php
(16.69 KB)
📄
RetrievesMultipleKeys.php
(1.13 KB)
📄
TagSet.php
(2.46 KB)
📄
TaggableStore.php
(421 B)
📄
TaggedCache.php
(2.5 KB)
📄
composer.json
(1.49 KB)
Editing: Lock.php
<?php namespace Illuminate\Cache; use Illuminate\Contracts\Cache\Lock as LockContract; use Illuminate\Contracts\Cache\LockTimeoutException; use Illuminate\Support\InteractsWithTime; use Illuminate\Support\Sleep; use Illuminate\Support\Str; abstract class Lock implements LockContract { use InteractsWithTime; /** * The name of the lock. * * @var string */ protected $name; /** * The number of seconds the lock should be maintained. * * @var int */ protected $seconds; /** * The scope identifier of this lock. * * @var string */ protected $owner; /** * The number of milliseconds to wait before re-attempting to acquire a lock while blocking. * * @var int */ protected $sleepMilliseconds = 250; /** * Create a new lock instance. * * @param string $name * @param int $seconds * @param string|null $owner * @return void */ public function __construct($name, $seconds, $owner = null) { if (is_null($owner)) { $owner = Str::random(); } $this->name = $name; $this->owner = $owner; $this->seconds = $seconds; } /** * Attempt to acquire the lock. * * @return bool */ abstract public function acquire(); /** * Release the lock. * * @return bool */ abstract public function release(); /** * Returns the owner value written into the driver for this lock. * * @return string */ abstract protected function getCurrentOwner(); /** * Attempt to acquire the lock. * * @param callable|null $callback * @return mixed */ public function get($callback = null) { $result = $this->acquire(); if ($result && is_callable($callback)) { try { return $callback(); } finally { $this->release(); } } return $result; } /** * Attempt to acquire the lock for the given number of seconds. * * @param int $seconds * @param callable|null $callback * @return mixed * * @throws \Illuminate\Contracts\Cache\LockTimeoutException */ public function block($seconds, $callback = null) { $starting = $this->currentTime(); while (! $this->acquire()) { Sleep::usleep($this->sleepMilliseconds * 1000); if ($this->currentTime() - $seconds >= $starting) { throw new LockTimeoutException; } } if (is_callable($callback)) { try { return $callback(); } finally { $this->release(); } } return true; } /** * Returns the current owner of the lock. * * @return string */ public function owner() { return $this->owner; } /** * Determines whether this lock is allowed to release the lock in the driver. * * @return bool */ public function isOwnedByCurrentProcess() { return $this->getCurrentOwner() === $this->owner; } /** * Specify the number of milliseconds to sleep in between blocked lock acquisition attempts. * * @param int $milliseconds * @return $this */ public function betweenBlockedAttemptsSleepFor($milliseconds) { $this->sleepMilliseconds = $milliseconds; return $this; } }
Upload File
Create Folder