Variable TimeoutActionConst
TimeoutAction: {
CANCEL: "CANCEL";
CONTINUE: "CONTINUE";
TIMEOUT_ACTION_UNSPECIFIED: "TIMEOUT_ACTION_UNSPECIFIED";
} = ...
Type Declaration
ReadonlyCANCEL: "CANCEL"
ReadonlyCONTINUE: "CONTINUE"
ReadonlyTIMEOUT_ACTION_UNSPECIFIED: "TIMEOUT_ACTION_UNSPECIFIED"
When
wait_timeout > 0s, the call will block up to the specified time. If the statement execution doesn't finish within this time,on_wait_timeoutdetermines whether the execution should continue or be canceled. When set toCONTINUE, the statement execution continues asynchronously and the call returns a statement ID which can be used for polling with :method:statementexecution/getStatement. When set toCANCEL, the statement execution is canceled and the call returns with aCANCELEDstate.