Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager interface {
stateinterfaces.StateReader
avalancheuptime.Manager
// Initialize initializes the validator manager
// by syncing the validator state with the current validator set
// and starting the uptime tracking.
Initialize(ctx context.Context) error
// Shutdown stops the uptime tracking and writes the validator state to the database.
Shutdown() error
// DispatchSync starts the sync process
DispatchSync(ctx context.Context, lock sync.Locker)
}
type ValidatorReader ¶
type ValidatorReader interface {
// GetValidatorAndUptime returns the calculated uptime of the validator specified by validationID
// and the last updated time.
// GetValidatorAndUptime holds the VM lock while performing the operation and can be called concurrently.
GetValidatorAndUptime(validationID ids.ID) (stateinterfaces.Validator, time.Duration, time.Time, error)
}
Click to show internal directories.
Click to hide internal directories.