Package org.jboss.ha.framework.server.lock.SharedLocalYieldingClusterLockManager

Examples of org.jboss.ha.framework.server.lock.SharedLocalYieldingClusterLockManager.LockResult


     
      this.trace("Acquiring %slock on %s", newLock ? "new " : "", id);
     
      try
      {
         LockResult result = this.lockManager.lock(this.getBeanLockKey(id), this.cache.getConfiguration().getLockAcquisitionTimeout(), newLock);
         this.trace("Lock acquired (%s) on %s", result, id);
         return result;
      }
      catch (TimeoutException e)
      {
View Full Code Here

TOP

Related Classes of org.jboss.ha.framework.server.lock.SharedLocalYieldingClusterLockManager.LockResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.