kibana/docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.executionstate.state.md
2020-09-30 09:10:28 +02:00

725 B

Home > kibana-plugin-plugins-expressions-public > ExecutionState > state

ExecutionState.state property

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.

Signature:

state: 'not-started' | 'pending' | 'result' | 'error';