Package com.orientechnologies.orient.core.sql

Examples of com.orientechnologies.orient.core.sql.OSQLScriptEngineFactory


  protected static final int                 LINES_AROUND_ERROR = 5;

  public OScriptManager() {
    scriptEngineManager = new ScriptEngineManager();

    registerSharedEngine(OSQLScriptEngine.NAME, new OSQLScriptEngineFactory().getScriptEngine());

    for (ScriptEngineFactory f : scriptEngineManager.getEngineFactories()) {
      if (f.getParameter("THREADING") != null)
        // MULTI-THREAD: CACHE IT AS SHARED
        registerSharedEngine(f.getLanguageName().toLowerCase(), f.getScriptEngine());
View Full Code Here

TOP

Related Classes of com.orientechnologies.orient.core.sql.OSQLScriptEngineFactory

Copyright © 2018 www.massapicom. 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.