Executor

interface Executor

An executor for a CallableValue. To help with sandboxing, the executor may take multiple steps to execute the function.

Functions

Link copied to clipboard

Handles an error that occurred during execution.

Link copied to clipboard
open fun handleFinally(state: State): Boolean

Handles a finally block. Generally, you should use this to clean up resources.

Link copied to clipboard
abstract fun step(state: State): StepResult

Executes the next step of the function.