Returns true if the overall backend status is already set with an error.
| 556 | |
| 557 | /// Returns true if the overall backend status is already set with an error. |
| 558 | bool HasErrorStatus() const { |
| 559 | return !overall_status_.ok() && !overall_status_.IsCancelled(); |
| 560 | } |
| 561 | |
| 562 | /// Updates the BackendExecState based on 'overall_status_'. Should only be called when |
| 563 | /// the current state is a non-terminal state. The transition can either be to the next |
nothing calls this directly
no test coverage detected