mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
1.3 KiB
1.3 KiB
Home > kibana-plugin-plugins-expressions-server > ExecutionState
ExecutionState interface
Signature:
export interface ExecutionState<Output = ExpressionValue> extends ExecutorState
Properties
Property | Type | Description |
---|---|---|
ast | ExpressionAstExpression |
|
error | Error |
Error happened during the execution. |
result | Output |
Result of the expression execution. |
state | 'not-started' | 'pending' | 'result' | 'error' |
Tracks state of execution.- not-started - before .start() method was called. - pending - immediately after .start() method is called. - result - when expression execution completed. - error - when execution failed with error. |