Files
nomad/client/structs/enum.go
hashicorp-copywrite[bot] 8597061b52 [COMPLIANCE] Add Copyright and License Headers (#17429)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-06-05 13:23:59 -04:00

15 lines
359 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package structs
// AllocUpdatePriority indicates the urgency of an allocation update so that the
// client can decide whether to wait longer
type AllocUpdatePriority int
const (
AllocUpdatePriorityNone AllocUpdatePriority = iota
AllocUpdatePriorityTypical
AllocUpdatePriorityUrgent
)