ObservableInterpretable is an Interpretable which supports stateful observation, such as tracing or cost-tracking.
| 145 | // ObservableInterpretable is an Interpretable which supports stateful observation, such as tracing |
| 146 | // or cost-tracking. |
| 147 | type ObservableInterpretable struct { |
| 148 | InterpretableV2 |
| 149 | observers []StatefulObserver |
| 150 | } |
| 151 | |
| 152 | // ID implements the Interpretable method to get the expression id associated with the step. |
| 153 | func (oi *ObservableInterpretable) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected