open-nomad/nomad/drainerv2/watch_jobs.go
2018-03-21 16:51:44 -07:00

9 lines
184 B
Go

package drainerv2
import "github.com/hashicorp/nomad/nomad/structs"
type DrainingJobWatcher interface {
RegisterJob(jobID, namespace string)
Drain() <-chan []*structs.Allocation
}