Interface ScriptFunction
- 
- All Known Implementing Classes:
- ScriptManager.ScriptFunctionImpl
 
 public interface ScriptFunctionThis interface represents a compiled scripting function that can be executed multiple times. It is executed by the ScriptManager that created it. Created by colby.clegg on 10/23/2014.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description org.python.core.PyObjectinvoke(org.python.core.PyObject... arguments)Executes the compiled function against the source ScriptManger.
 
- 
- 
- 
Method Detail- 
invokeorg.python.core.PyObject invoke(org.python.core.PyObject... arguments) throws JythonExecExceptionExecutes the compiled function against the source ScriptManger. Depending on the function definition, the return may be null.- Throws:
- JythonExecException
 
 
- 
 
-