milvus/internal/distributed/queryservice/service.go

75 lines
1.8 KiB
Go
Raw Normal View History

package queryservice
import (
"google.golang.org/grpc"
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
"github.com/zilliztech/milvus-distributed/internal/proto/querypb"
queryServiceImpl "github.com/zilliztech/milvus-distributed/internal/queryservice"
)
type Server struct {
grpcServer *grpc.Server
queryService queryServiceImpl.Interface
}
func (s *Server) Init() error {
panic("implement me")
}
func (s *Server) Start() error {
panic("implement me")
}
func (s *Server) Stop() error {
panic("implement me")
}
func (s *Server) GetComponentStates() (*internalpb2.ComponentStates, error) {
panic("implement me")
}
func (s *Server) GetTimeTickChannel() (string, error) {
panic("implement me")
}
func (s *Server) GetStatisticsChannel() (string, error) {
panic("implement me")
}
func (s *Server) RegisterNode(req querypb.RegisterNodeRequest) (querypb.RegisterNodeResponse, error) {
panic("implement me")
}
func (s *Server) ShowCollections(req querypb.ShowCollectionRequest) (querypb.ShowCollectionResponse, error) {
panic("implement me")
}
func (s *Server) LoadCollection(req querypb.LoadCollectionRequest) error {
panic("implement me")
}
func (s *Server) ReleaseCollection(req querypb.ReleaseCollectionRequest) error {
panic("implement me")
}
func (s *Server) ShowPartitions(req querypb.ShowPartitionRequest) (querypb.ShowPartitionResponse, error) {
panic("implement me")
}
func (s *Server) GetPartitionStates(req querypb.PartitionStatesRequest) (querypb.PartitionStatesResponse, error) {
panic("implement me")
}
func (s *Server) LoadPartitions(req querypb.LoadPartitionRequest) error {
panic("implement me")
}
func (s *Server) ReleasePartitions(req querypb.ReleasePartitionRequest) error {
panic("implement me")
}
func (s *Server) CreateQueryChannel() (querypb.CreateQueryChannelResponse, error) {
panic("implement me")
}