seaweedfs/weed/replication/sink/replication_sink.go

22 lines
687 B
Go
Raw Normal View History

2018-09-23 07:40:36 +00:00
package sink
import (
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/replication/source"
2018-10-04 06:36:52 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2018-09-23 07:40:36 +00:00
)
type ReplicationSink interface {
2018-10-04 06:36:52 +00:00
GetName() string
Initialize(configuration util.Configuration, prefix string) error
DeleteEntry(key string, isDirectory, deleteIncludeChunks bool) error
CreateEntry(key string, entry *filer_pb.Entry) error
UpdateEntry(key string, oldEntry *filer_pb.Entry, newParentPath string, newEntry *filer_pb.Entry, deleteIncludeChunks bool) (foundExistingEntry bool, err error)
2018-09-23 07:40:36 +00:00
GetSinkToDirectory() string
SetSourceFiler(s *source.FilerSource)
}
2018-10-04 06:36:52 +00:00
var (
Sinks []ReplicationSink
)