mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
48821690b3
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
17 lines
544 B
Go
17 lines
544 B
Go
package proxyservice
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/proxypb"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
)
|
|
|
|
type ServiceBase = typeutil.Component
|
|
|
|
type Interface interface {
|
|
ServiceBase
|
|
RegisterLink() (proxypb.RegisterLinkResponse, error)
|
|
RegisterNode(request proxypb.RegisterNodeRequest) (proxypb.RegisterNodeResponse, error)
|
|
// TODO: i'm sure it's not a best way to keep consistency, fix me
|
|
InvalidateCollectionMetaCache(request proxypb.InvalidateCollMetaCacheRequest) error
|
|
}
|