ExecState is stored using an AtomicEnum, so reads do not require holding lock_.
| 316 | |
| 317 | /// ExecState is stored using an AtomicEnum, so reads do not require holding lock_. |
| 318 | ExecState exec_state() const { return exec_state_.Load(); } |
| 319 | |
| 320 | /// WaitForCompletionExecState waits until the state reaches FINISHED or ERROR |
| 321 | /// or it reaches the timeout. The timeout is specified using the long_polling_time_ms |
no test coverage detected