mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
725 B
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';