ExecState returns the per-request execution counters. Lazy-init on first access — callers may invoke this concurrently.
()
| 360 | // ExecState returns the per-request execution counters. Lazy-init on |
| 361 | // first access — callers may invoke this concurrently. |
| 362 | func (r *NormalizedRequest) ExecState() *ExecState { |
| 363 | if r == nil { |
| 364 | return nil |
| 365 | } |
| 366 | return r.execStateHolder.get() |
| 367 | } |
| 368 | |
| 369 | // IsInternal returns true when the request was constructed by an |
| 370 | // internal subsystem (state poller, chainId probe, vendor detection). |