2020-10-21 18:10:42 +03:00
|
|
|
package netmap
|
|
|
|
|
2022-04-21 14:28:05 +03:00
|
|
|
// State groups the current system state parameters.
|
2020-10-21 18:10:42 +03:00
|
|
|
type State interface {
|
2022-04-21 14:28:05 +03:00
|
|
|
// CurrentEpoch returns the number of the current NeoFS epoch.
|
2020-10-21 18:10:42 +03:00
|
|
|
CurrentEpoch() uint64
|
|
|
|
}
|