1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-08-06 09:51:20 +02:00
seaweedfs/weed/replication/notifications.go
2018-09-21 01:56:43 -07:00

19 lines
477 B
Go

package replication
import (
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
)
type NotificationInput interface {
// GetName gets the name to locate the configuration in sync.toml file
GetName() string
// Initialize initializes the file store
Initialize(configuration util.Configuration) error
ReceiveMessage() (key string, message *filer_pb.EventNotification, err error)
}
var (
NotificationInputs []NotificationInput
)