2018-10-31 16:11:19 +08:00
|
|
|
package sub
|
2018-09-17 15:27:56 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-09-21 16:56:43 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-09-17 15:27:56 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type NotificationInput interface {
|
|
|
|
// GetName gets the name to locate the configuration in sync.toml file
|
|
|
|
GetName() string
|
|
|
|
// Initialize initializes the file store
|
2020-01-30 01:09:55 +08:00
|
|
|
Initialize(configuration util.Configuration, prefix string) error
|
2018-09-17 15:27:56 +08:00
|
|
|
ReceiveMessage() (key string, message *filer_pb.EventNotification, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
NotificationInputs []NotificationInput
|
|
|
|
)
|