mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
* Refactor execution service to use observables underneath * Fix canvas plugin to initialize workspace after assets * Update expression functions implementations to resolve observables instead of promises
833 B
833 B
Home > kibana-plugin-plugins-expressions-server > Execution > start
Execution.start() method
Call this method to start execution.
N.B. input
is initialized to null
rather than undefined
for legacy reasons, because in legacy interpreter it was set to null
by default.
Signature:
start(input?: Input): Observable<Output | ExpressionValueError>;
Parameters
Parameter | Type | Description |
---|---|---|
input | Input |
Returns:
Observable<Output | ExpressionValueError>