open-nomad/client/allocrunner/taskrunner/interfaces/events.go

8 lines
140 B
Go
Raw Normal View History

2018-07-13 20:45:57 +00:00
package interfaces
import "github.com/hashicorp/nomad/nomad/structs"
type EventEmitter interface {
EmitEvent(event *structs.TaskEvent)
2018-07-13 20:45:57 +00:00
}