コード例 #1
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
  public void close() {
    _isClosed = true;

    _sessionManager.close();
    _pageManager.close();

    if (_envTimeoutThread != null) _envTimeoutThread.shutdown();

    if (_quercusTimer != null) {
      _quercusTimer.shutdown();
    }
  }
コード例 #2
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /**
  * Parses a quercus program.
  *
  * @param path the source file path
  * @return the parsed program
  * @throws IOException
  */
 public QuercusPage parse(Path path, String fileName, int line) throws IOException {
   return _pageManager.parse(path, fileName, line);
 }
コード例 #3
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /**
  * Parses a quercus program.
  *
  * @param path the source file path
  * @return the parsed program
  * @throws IOException
  */
 public QuercusPage parse(Path path) throws IOException {
   return _pageManager.parse(path);
 }
コード例 #4
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /** Returns true if a precompiled page exists */
 public boolean includeExists(Path path) {
   return _pageManager.precompileExists(path);
 }
コード例 #5
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /*
  * Sets the capacity of the page cache.
  */
 public void setPageCacheSize(int size) {
   _pageManager.setPageCacheSize(size);
 }
コード例 #6
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /*
  * Gets the max size of the page cache.
  */
 public int getPageCacheSize() {
   return _pageManager.getPageCacheSize();
 }
コード例 #7
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /*
  * true if interpreted pages should be used if pages fail to compile.
  */
 public void setCompileFailover(boolean isCompileFailover) {
   _pageManager.setCompileFailover(isCompileFailover);
 }
コード例 #8
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /** Set true if pages should be compiled. */
 public void setLazyCompile(boolean isCompile) {
   _pageManager.setLazyCompile(isCompile);
 }
コード例 #9
0
ファイル: QuercusContext.java プロジェクト: dlitz/resin
 /** true if the pages should be compiled. */
 public boolean isCompile() {
   return _pageManager.isCompile();
 }