IsContinuous indicates that this is a continuous probe.
()
| 277 | |
| 278 | // IsContinuous indicates that this is a continuous probe. |
| 279 | func (p *Probe) IsContinuous() bool { |
| 280 | return p.interval < 0 |
| 281 | } |
| 282 | |
| 283 | // Close shuts down the Probe and unregisters it from its Prober. |
| 284 | // It is safe to Run a new probe of the same name after Close returns. |
no outgoing calls
no test coverage detected