sheepmq/lease/leaser.go
2017-06-22 19:25:38 -04:00

11 lines
206 B
Go

package lease
// Leaser denotes whether a given lease is still valid
type Leaser interface {
// Update and check the leaser
Valid() bool
// Check the leaser without any sort of updates
Check() bool
}