Poller will poll a diode until a value is available.
| 13 | |
| 14 | // Poller will poll a diode until a value is available. |
| 15 | type Poller struct { |
| 16 | Diode |
| 17 | interval time.Duration |
| 18 | ctx context.Context |
| 19 | } |
| 20 | |
| 21 | // PollerConfigOption can be used to setup the poller. |
| 22 | type PollerConfigOption func(*Poller) |
nothing calls this directly
no outgoing calls
no test coverage detected