Package railo.runtime.type.scope.storage

Examples of railo.runtime.type.scope.storage.StorageScope


                int count=arrClients.length;
                for(int y=0;y<arrClients.length;y++) {
                  cfid=arrClients[y];
                  o=fhm.get(cfid);
                  if(!(o instanceof StorageScope)) continue;
            StorageScope scope=(StorageScope)o;
            if(scope.lastVisit()+timespan<now && !(scope instanceof MemoryScope)) {
              getLog().info("scope-context", "remove from memory "+strType+" scope for "+applicationName+"/"+cfid+" from storage "+scope.getStorage());
             
                //if(scope instanceof StorageScope)((StorageScope)scope).store(cfmlFactory.getConfig());
              fhm.remove(arrClients[y]);
                count--;
            }
View Full Code Here

TOP

Related Classes of railo.runtime.type.scope.storage.StorageScope

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.