2020-03-23 11:40:02 +00:00
|
|
|
package sealtasks
|
|
|
|
|
|
|
|
type TaskType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
TTAddPiece TaskType = "seal/v0/addpiece"
|
|
|
|
TTPreCommit1 TaskType = "seal/v0/precommit/1"
|
|
|
|
TTPreCommit2 TaskType = "seal/v0/precommit/2"
|
|
|
|
TTCommit1 TaskType = "seal/v0/commit/1" // NOTE: We use this to transfer the sector into miner-local storage for now; Don't use on workers!
|
|
|
|
TTCommit2 TaskType = "seal/v0/commit/2"
|
|
|
|
|
|
|
|
TTFinalize TaskType = "seal/v0/finalize"
|
2020-04-27 12:55:37 +00:00
|
|
|
|
|
|
|
TTFetch TaskType = "seal/v0/fetch"
|
2020-03-23 11:40:02 +00:00
|
|
|
)
|
2020-05-07 23:38:05 +00:00
|
|
|
|
|
|
|
var order = map[TaskType]int{
|
|
|
|
TTAddPiece: 7,
|
|
|
|
TTPreCommit1: 6,
|
|
|
|
TTPreCommit2: 5,
|
|
|
|
TTCommit2: 4,
|
|
|
|
TTCommit1: 3,
|
|
|
|
TTFetch: 2,
|
|
|
|
TTFinalize: 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a TaskType) Less(b TaskType) bool {
|
|
|
|
return order[a] < order[b]
|
|
|
|
}
|