Interface CodeExecutionEngine

All Known Implementing Classes:
GraalVmJavaScriptExecutionEngine, GraalVmPythonExecutionEngine

public interface CodeExecutionEngine
Interface for executing code.
  • Method Summary

    Modifier and Type
    Method
    Description
    Execute the given code.
  • Method Details

    • execute

      String execute(String code)
      Execute the given code.
      Parameters:
      code - The code to execute.
      Returns:
      The result of the execution.