(r *Runtime, index uint64)
| 42 | } |
| 43 | |
| 44 | func newWaitItem(r *Runtime, index uint64) *waitItem { |
| 45 | return &waitItem{ |
| 46 | r: r, |
| 47 | index: index, |
| 48 | waitCh: make(chan struct{}, 1), |
| 49 | stopCh: make(chan struct{}), |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func (i *waitItem) startFetch() { |
| 54 | i.l.Lock() |