Package org.apache.commons.transaction.locking

Examples of org.apache.commons.transaction.locking.GenericLock


            buf.append(Long.toString(startTime)).append('\n');
            if (debug) {
                buf.append("----- Lock Debug Info -----\n");

                for (Iterator it = lockManager.getAll(txId).iterator(); it.hasNext();) {
                    GenericLock lock = (GenericLock) it.next();
                    buf.append(lock.toString()+"\n");
                }

            }
            return buf.toString();
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.transaction.locking.GenericLock

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.