001    package railo.runtime.type.scope.storage;
002    
003    import railo.runtime.type.scope.Scope;
004    
005    public interface MemoryScope extends Scope {
006            /**
007             * is the scope expired?
008             */
009            public boolean isExpired();
010            
011            /**
012             * set lastvistit to now
013             */
014            public abstract void touch();
015            
016    }