mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
3602376a10
Signed-off-by: sunby <bingyi.sun@zilliz.com>
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package proxyservice
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/proxypb"
|
|
)
|
|
|
|
type ProxyService struct {
|
|
// implement Service
|
|
|
|
//nodeClients [] .Interface
|
|
// factory method
|
|
|
|
}
|
|
|
|
func (s ProxyService) Init() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) Start() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) Stop() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) GetComponentStates() (*internalpb2.ComponentStates, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) GetTimeTickChannel() (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) GetStatisticsChannel() (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) RegisterLink() (proxypb.RegisterLinkResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) RegisterNode(request proxypb.RegisterNodeRequest) (proxypb.RegisterNodeResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (s ProxyService) InvalidateCollectionMetaCache(request proxypb.InvalidateCollMetaCacheRequest) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func NewProxyServiceImpl() Interface {
|
|
return &ProxyService{}
|
|
}
|