Examples of CFMLFactoryImpl


Examples of railo.runtime.CFMLFactoryImpl

    }
   
    @Override
    public void reset(String configId) {
       
        CFMLFactoryImpl cfmlFactory;
        //ScopeContext scopeContext;
        try {
          Iterator<String> it = contextes.keySet().iterator();
          while(it.hasNext()) {
            try {
                cfmlFactory=(CFMLFactoryImpl) contextes.get(it.next());
                if(configId!=null && !configId.equals(cfmlFactory.getConfigWebImpl().getId())) continue;
                 
                // scopes
                try{cfmlFactory.getScopeContext().clear();}catch(Throwable t){t.printStackTrace();}
               
                // PageContext
                try{cfmlFactory.resetPageContext();}catch(Throwable t){t.printStackTrace();}
               
                // Query Cache
                try{ cfmlFactory.getDefaultQueryCache().clear(null);}catch(Throwable t){t.printStackTrace();}
               
                // Gateway
                try{ cfmlFactory.getConfigWebImpl().getGatewayEngine().reset();}catch(Throwable t){t.printStackTrace();}
               
            }
            catch(Throwable t){
              t.printStackTrace();
            }
View Full Code Here

Examples of railo.runtime.CFMLFactoryImpl

  @Override
  public void run() {
    //scheduleThread.start();
    boolean firstRun=true;
   
    CFMLFactoryImpl factories[]=null;
    while(run.toBooleanValue()) {
          try {
        sleep(interval);
      }
            catch (InterruptedException e) {
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.