25 lines
442 B
Go
25 lines
442 B
Go
package request_strategy
|
|
|
|
import (
|
|
"github.com/anacrolix/torrent/types"
|
|
)
|
|
|
|
type ChunksIter func(func(types.ChunkSpec))
|
|
|
|
type Piece struct {
|
|
Request bool
|
|
Priority piecePriority
|
|
Partial bool
|
|
Availability int64
|
|
Length int64
|
|
NumPendingChunks int
|
|
IterPendingChunks ChunksIter
|
|
}
|
|
|
|
func (p Piece) iterPendingChunksWrapper(f func(ChunkSpec)) {
|
|
i := p.IterPendingChunks
|
|
if i != nil {
|
|
i(f)
|
|
}
|
|
}
|