Download the PHP package snowio/magento2-lock without Composer
On this page you can find all versions of the php package snowio/magento2-lock. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download snowio/magento2-lock
More information about snowio/magento2-lock
Files in snowio/magento2-lock
Package magento2-lock
Short Description A Magento 2 module which provides a multi-server lock service
License MIT
Informations about the package magento2-lock
Magento 2 Lock
Description
A Magento 2 module which provides a multi-server lock service. This allows developers to apply mutual exclusion locks to shared resources so that they are not accessed simultaneously.
Prerequisites
- PHP 7.0 or newer.
magento/framework
module 100 or newer.- Composer (https://getcomposer.org/download/).
Installation
Usage
The lock service can be accessed through dependency injection. Please refer the dependency injection section of the Magento DevDocs for more information on how to use dependency injection.
public boolean LockService::acquireLock(string $name, int $timeout)
Attempt to obtain a lock
Parameters
$lockName
: The lock identifier/name$timeout
: Lock timeout. A negative timeout implies an infinite timeout.
Return Values
A boolean indicating if the the lock was acquired.
public LockService::releaseLock($lockName)
Release the lock
Parameters
$lockName
: The lock identifier/name
Example
Applications
- snowio/magento2-product-save-mutex : Uses this module in order to make product save API calls mutually exclusive.
- snowio/magento2-idempotent-api : Uses this module in order to determine request conflicts whereby 2 or more requests that have the same
X-Message-Group-ID
are dispatched.
License
This software is licensed under the MIT License. View the license