class RetryTillSaveStore implements StoreInterface, LoggerAwareInterface
RetryTillSaveStore is a StoreInterface implementation which decorate a non blocking StoreInterface to provide a blocking storage.
LoggerAwareTrait |
__construct(StoreInterface $decorated, int $retrySleep = 100, int $retryCount = PHP_INT_MAX) | ||
save(Key $key) Stores the resource if it's not locked by someone else. | ||
waitAndSave(Key $key) Waits until a key becomes free, then stores the resource. | ||
putOffExpiration(Key $key, $ttl) Extends the ttl of a resource. | ||
delete(Key $key) Removes a resource from the storage. | ||
bool | exists(Key $key) Returns whether or not the resource exists in the storage. |
StoreInterface | $decorated | The decorated StoreInterface |
int | $retrySleep | Duration in ms between 2 retry |
int | $retryCount | Maximum amount of retry |
Stores the resource if it's not locked by someone else.
Key | $key |
LockConflictedException |
Waits until a key becomes free, then stores the resource.
If the store does not support this feature it should throw a NotSupportedException.
Key | $key |
LockConflictedException | |
NotSupportedException |
Extends the ttl of a resource.
If the store does not support this feature it should throw a NotSupportedException.
Key | $key | |
$ttl |
LockConflictedException | |
NotSupportedException |
Removes a resource from the storage.
Key | $key |
Returns whether or not the resource exists in the storage.
Key | $key |
bool |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Lock/Store/RetryTillSaveStore.html