Package railo.runtime.lock

Examples of railo.runtime.lock.LockManager


  public static void terminate(PageContext pc) {
    Log log = pc.getConfig().getRequestTimeoutLogger();
       
    String strLocks="";
    try{
      LockManager manager = pc.getConfig().getLockManager();
          String[] locks = manager.getOpenLockNames();
          if(!ArrayUtil.isEmpty(locks))
            strLocks=" open locks at this time ("+ListUtil.arrayToList(locks, ", ")+").";
          //LockManagerImpl.unlockAll(pc.getId());
    }
    catch(Throwable t){}
View Full Code Here

TOP

Related Classes of railo.runtime.lock.LockManager

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.