Interface ScriptExecutor

All Known Implementing Classes:
AbstractScriptExecutor, DefaultScriptExecutor, KotlinScriptExecutor, PolyglotScriptExecutor, PythonScriptExecutor, RubyScriptExecutor
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ScriptExecutor
A script evaluation abstraction against ScriptSource and optional binding variables.
Since:
2.1
Author:
David Turanski, Artem Bilan
  • Method Details

    • executeScript

      @Nullable Object executeScript(ScriptSource scriptSource, @Nullable Map<String,Object> variables)
      Execute a script from the provided ScriptSource with an optional binding variables.
      Parameters:
      scriptSource - The script source.
      variables - The variables.
      Returns:
      The result of the execution.
    • executeScript

      @Nullable default Object executeScript(ScriptSource scriptSource)
      Execute a script from the provided ScriptSource
      Parameters:
      scriptSource - The script source.
      Returns:
      The result of the execution.