gecko/snow/engine/common/queue/job.go

19 lines
273 B
Go

// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package queue
import (
"github.com/ava-labs/gecko/ids"
)
// Job ...
type Job interface {
ID() ids.ID
MissingDependencies() ids.Set
Execute() error
Bytes() []byte
}