Future<ScriptModule> |
DefaultScriptService.run(File file,
boolean process,
Object... inputs) |
|
Future<ScriptModule> |
DefaultScriptService.run(File file,
boolean process,
Map<String,Object> inputMap) |
|
Future<ScriptModule> |
DefaultScriptService.run(ScriptInfo info,
boolean process,
Object... inputs) |
|
Future<ScriptModule> |
DefaultScriptService.run(ScriptInfo info,
boolean process,
Map<String,Object> inputMap) |
|
Future<ScriptModule> |
ScriptService.run(File file,
boolean process,
Object... inputs) |
Executes the script in the given file.
|
Future<ScriptModule> |
ScriptService.run(File file,
boolean process,
Map<String,Object> inputMap) |
Executes the script in the given file.
|
default Future<ScriptModule> |
ScriptService.run(String path,
Reader reader,
boolean process,
Object... inputs) |
Executes the given script.
|
default Future<ScriptModule> |
ScriptService.run(String path,
Reader reader,
boolean process,
Map<String,Object> inputMap) |
Executes the given script.
|
default Future<ScriptModule> |
ScriptService.run(String path,
String script,
boolean process,
Object... inputs) |
Executes the given script.
|
default Future<ScriptModule> |
ScriptService.run(String path,
String script,
boolean process,
Map<String,Object> inputMap) |
Executes the given script.
|
Future<ScriptModule> |
ScriptService.run(ScriptInfo info,
boolean process,
Object... inputs) |
Executes the given script.
|
Future<ScriptModule> |
ScriptService.run(ScriptInfo info,
boolean process,
Map<String,Object> inputMap) |
Executes the given script.
|