Start a best-effort background refresh without waiting on it.
(url: string, ref: PRRef)
| 119 | |
| 120 | /** Start a best-effort background refresh without waiting on it. */ |
| 121 | warm(url: string, ref: PRRef): void { |
| 122 | this.runDetached(this.refresh(url, ref, "warm"), "warm"); |
| 123 | } |
| 124 | |
| 125 | /** Refresh immediately after a successful provider write. */ |
| 126 | refreshAfterWrite(url: string, ref: PRRef): void { |
no test coverage detected