open-nomad/client/interfaces/client.go

24 lines
679 B
Go
Raw Normal View History

2018-07-19 00:06:44 +00:00
package interfaces
import (
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/device"
)
2018-07-19 00:06:44 +00:00
type Client interface {
AllocStateHandler
}
// AllocStateHandler exposes a handler to be called when a allocation's state changes
type AllocStateHandler interface {
// AllocStateUpdated is used to emit an updated allocation. This allocation
// is stripped to only include client settable fields.
AllocStateUpdated(alloc *structs.Allocation)
2018-07-19 00:06:44 +00:00
}
// DeviceStatsReporter gives access to the latest resource usage
// for devices
type DeviceStatsReporter interface {
LatestDeviceResourceStats([]*structs.AllocatedDeviceResource) []*device.DeviceGroupStats
}