| 20 | ) |
| 21 | |
| 22 | type taskPollingFetchAdaptor struct { |
| 23 | mu sync.Mutex |
| 24 | taskIDs []string |
| 25 | fetched chan string |
| 26 | blockTaskID string |
| 27 | blockStarted chan struct{} |
| 28 | releaseBlock chan struct{} |
| 29 | blockOnce sync.Once |
| 30 | } |
| 31 | |
| 32 | func (a *taskPollingFetchAdaptor) Init(_ *relaycommon.RelayInfo) {} |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected