Examples of onApplicationEnd()


Examples of railo.runtime.listener.ApplicationListener.onApplicationEnd()

     
      if(application.getLastAccess()+application.getTimeSpan()<now) {
                //SystemOut .printDate(jspFactory.getConfigWebImpl().getOut(),"Clear application scope:"+arrContextes[i]+"-"+this);
                application.touch();
        try {
          listener.onApplicationEnd(jspFactory,(String)arrContextes[i]);
        }
        catch (Throwable t) {
          ExceptionHandler.log(jspFactory.getConfig(),Caster.toPageException(t));
        }
        finally {
View Full Code Here

Examples of railo.runtime.listener.ApplicationListener.onApplicationEnd()

        Application application=applicationContextes.get(name);
        if(application==null) throw new ApplicationException("there is no application context defined with name ["+name+"]");
        ApplicationListener listener = PageContextUtil.getApplicationListener(pc);
        application.touch();
    try {
      listener.onApplicationEnd(jspFactory,name);
    }
    finally {
      applicationContextes.remove(name);
      application.release();
    }
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.