Examples of onSessionEnd()


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

  public void doEnd(StorageScopeEngine engine,StorageScopeCleaner cleaner,String appName, String cfid) {
    CFMLFactoryImpl factory = engine.getFactory();
    ApplicationListener listener = factory.getConfig().getApplicationListener();
    try {
      cleaner.info("call onSessionEnd for "+appName+"/"+cfid);
      listener.onSessionEnd(factory, appName, cfid);
    }
    catch (Throwable t) {
      ExceptionHandler.log(factory.getConfig(),Caster.toPageException(t));
    }
  }
View Full Code Here

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

 
  private void _doEnd(CFMLFactoryImpl factory,String appName, String cfid) {
    ApplicationListener listener = factory.getConfig().getApplicationListener();
    try {
      factory.getScopeContext().info("call onSessionEnd for "+appName+"/"+cfid);
      listener.onSessionEnd(factory, appName, cfid);
    }
    catch (Throwable t) {
      ExceptionHandler.log(factory.getConfig(),Caster.toPageException(t));
    }
  }
View Full Code Here

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

                application.touch();
              }
              scope.touch();
                       
              try {
                if(type==Scope.SCOPE_SESSION)listener.onSessionEnd(cfmlFactory,(String)applicationName,(String)cfid);
              }
              catch (Throwable t) {t.printStackTrace();
                ExceptionHandler.log(cfmlFactory.getConfig(),Caster.toPageException(t));
              }
              finally {
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.