()
| 302 | } |
| 303 | |
| 304 | func (f *folder) SchedulePull() { |
| 305 | select { |
| 306 | case f.pullScheduled <- struct{}{}: |
| 307 | default: |
| 308 | // We might be busy doing a pull and thus not reading from this |
| 309 | // channel. The channel is 1-buffered, so one notification will be |
| 310 | // queued to ensure we recheck after the pull, but beyond that we must |
| 311 | // make sure to not block index receiving. |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | func (*folder) Jobs(_, _ int) ([]string, []string, int) { |
| 316 | return nil, nil, 0 |
no outgoing calls
no test coverage detected