mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-05-03 13:07:48 +08:00
12 lines
335 B
Go
12 lines
335 B
Go
package msgqueue
|
|
|
|
import "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 Configuration) error
|
|
SendMessage(key string, message proto.Message) error
|
|
}
|