mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4fbc241679
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
25 lines
555 B
Go
25 lines
555 B
Go
package dbus
|
|
|
|
// Sequence represents the value of a monotonically increasing counter.
|
|
type Sequence uint64
|
|
|
|
const (
|
|
// NoSequence indicates the absence of a sequence value.
|
|
NoSequence Sequence = 0
|
|
)
|
|
|
|
// sequenceGenerator represents a monotonically increasing counter.
|
|
type sequenceGenerator struct {
|
|
nextSequence Sequence
|
|
}
|
|
|
|
func (generator *sequenceGenerator) next() Sequence {
|
|
result := generator.nextSequence
|
|
generator.nextSequence++
|
|
return result
|
|
}
|
|
|
|
func newSequenceGenerator() *sequenceGenerator {
|
|
return &sequenceGenerator{nextSequence: 1}
|
|
}
|