forked from TrueCloudLab/frostfs-node
923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
22 lines
456 B
Go
22 lines
456 B
Go
package subnetevents
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
subnetid "github.com/TrueCloudLab/frostfs-sdk-go/subnet/id"
|
|
)
|
|
|
|
// common interface of subnet notifications with subnet ID.
|
|
type eventWithID interface {
|
|
// ReadID reads identifier of the subnet.
|
|
ReadID(*subnetid.ID) error
|
|
}
|
|
|
|
// an error which is returned on zero subnet operation attempt.
|
|
type zeroSubnetOp struct {
|
|
op string
|
|
}
|
|
|
|
func (x zeroSubnetOp) Error() string {
|
|
return fmt.Sprintf("zero subnet %s", x.op)
|
|
}
|