refactoring

This commit is contained in:
Chris Lu 2018-09-16 01:37:35 -07:00
parent d923ba2206
commit bc03233364
2 changed files with 10 additions and 14 deletions

View file

@ -3,8 +3,18 @@ package notification
import (
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/spf13/viper"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/proto"
)
type MessageQueue interface {
// GetName gets the name to locate the configuration in filer.toml file
GetName() string
// Initialize initializes the file store
Initialize(configuration util.Configuration) error
SendMessage(key string, message proto.Message) error
}
var (
MessageQueues []MessageQueue

View file

@ -1,14 +0,0 @@
package notification
import (
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/proto"
)
type MessageQueue interface {
// GetName gets the name to locate the configuration in message_queue.toml file
GetName() string
// Initialize initializes the file store
Initialize(configuration util.Configuration) error
SendMessage(key string, message proto.Message) error
}