Package com.oracle.truffle.api.script
Class TruffleScriptEngineFactory
- java.lang.Object
-
- com.oracle.truffle.api.script.TruffleScriptEngineFactory
-
- All Implemented Interfaces:
javax.script.ScriptEngineFactory
public abstract class TruffleScriptEngineFactory extends java.lang.Object implements javax.script.ScriptEngineFactory
Tool access to the creation of Truffle execution engines.
-
-
Constructor Summary
Constructors Constructor Description TruffleScriptEngineFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
engineCreated(javax.script.ScriptEngine engine)
To be called by each concrete factory just after each engine instance is created, presenting an opportunity for an IDE to interrupt in a language-independent way.
-
-
-
Method Detail
-
engineCreated
protected final void engineCreated(javax.script.ScriptEngine engine)
To be called by each concrete factory just after each engine instance is created, presenting an opportunity for an IDE to interrupt in a language-independent way.- Parameters:
engine
- a just-created engine
-
-