Class LockService

java.lang.Object
com.broadleafcommerce.dataexchange.service.LockService

public class LockService extends Object
  • Constructor Details

  • Method Details

    • getLock

      public static Object getLock(String lockKey)
      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

      public static Object getLock(@NonNull ExchangeObject exchangeObject, String key)
      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 object
      key - the key to use for the lock
      Returns:
      the lock object