StatefulFetcherManager is an optional extension for protocols that keep shared client state outside individual task fetchers.
| 130 | // StatefulFetcherManager is an optional extension for protocols that keep |
| 131 | // shared client state outside individual task fetchers. |
| 132 | type StatefulFetcherManager interface { |
| 133 | SetStateStore(store ProtocolStateStore) |
| 134 | } |
| 135 | |
| 136 | // ProtocolStateStore persists shared protocol state for a fetcher manager. |
| 137 | // Downloader provides the concrete storage backend, while the protocol decides |
no outgoing calls
no test coverage detected