2020-10-21 15:10:42 +00:00
|
|
|
package netmap
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// State groups the current system state parameters.
|
2020-10-21 15:10:42 +00:00
|
|
|
type State interface {
|
2023-02-05 15:59:38 +00:00
|
|
|
// CurrentEpoch returns the number of the current FrostFS epoch.
|
2020-10-21 15:10:42 +00:00
|
|
|
CurrentEpoch() uint64
|
|
|
|
}
|