Package org.jboss.cache.lock

Examples of org.jboss.cache.lock.NodeLock.release()


                     // make sure we release locks in *reverse* order!
                     for (int i = locks.size() - 1; i > -1; i--)
                     {
                        NodeLock nl = locks.get(i);
                        if (trace) log.trace("releasing lock for " + nl.getFqn() + ": " + nl);
                        nl.release(currentThread);
                     }
                  }
                  finally
                  {
                     ctx.clearInvocationLocksAcquired();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.