aboutsummaryrefslogtreecommitdiff
path: root/weed/replication/sub/notifications.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-10-31 01:11:19 -0700
committerChris Lu <chris.lu@gmail.com>2018-10-31 01:11:19 -0700
commit4c97ff3717dc642fd2cad311a79df9ba266669cb (patch)
tree1c29716a587bb2f853439af6e0ebad88c906a82a /weed/replication/sub/notifications.go
parent200cbcde628d814eef44570076885651b3a0ed24 (diff)
downloadseaweedfs-4c97ff3717dc642fd2cad311a79df9ba266669cb.tar.xz
seaweedfs-4c97ff3717dc642fd2cad311a79df9ba266669cb.zip
support AWS SQS as file change notification message queue
Diffstat (limited to 'weed/replication/sub/notifications.go')
-rw-r--r--weed/replication/sub/notifications.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/weed/replication/sub/notifications.go b/weed/replication/sub/notifications.go
new file mode 100644
index 000000000..66fbef824
--- /dev/null
+++ b/weed/replication/sub/notifications.go
@@ -0,0 +1,18 @@
+package sub
+
+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
+)