Class LockService
java.lang.Object
com.broadleafcommerce.dataexchange.service.LockService
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
LockService
-
-
Method Details
-
getLock
To be used in places where synchronization is needed. This allows thread safe synchronization with string keys. Example:String lockKey = getLock(exchangeObject.getCorrelationId() + "-myService"); synchronized(lockKey) { // do something }
- Parameters:
lockKey
- the key to use for the lock- Returns:
- the lock object
-
getLock
To be used in places where synchronization is needed. This allows thread safe synchronization with string keys. This uses the correlationId from the exchange object and the key provided. Example:synchronized(product, "product-assets") { // do something }
- Parameters:
exchangeObject
- the exchange objectkey
- the key to use for the lock- Returns:
- the lock object
-