Skip to content
Snippets Groups Projects
Select Git revision
  • 9828a52999f0fd8d3f03293c10e2215b2caf0175
  • master default protected
  • benchmark protected
  • v2.0.0-rc4
  • v2.0.0-rc2
  • v2.0.0-rc1
  • v1.1.1
  • v1.1.0
  • v1.0.0
  • v0.10.6
  • v0.10.5
  • v0.10.4
  • v0.10.3
  • v0.10.2
  • v0.10.1
  • v0.8.1
  • v0.10.0
  • v0.9.1
  • v0.9.0
  • v0.8.0
  • v0.7.1
  • v0.7.0
  • v0.6.0
23 results

interface.go

Blame
  • interface.go 749 B
    package indexservice
    
    import (
    	"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
    	"github.com/zilliztech/milvus-distributed/internal/proto/indexpb"
    	"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
    )
    
    type ServiceBase = typeutil.Component
    
    type Interface interface {
    	ServiceBase
    	RegisterNode(req *indexpb.RegisterNodeRequest) (*indexpb.RegisterNodeResponse, error)
    	BuildIndex(req *indexpb.BuildIndexRequest) (*indexpb.BuildIndexResponse, error)
    	GetIndexStates(req *indexpb.IndexStatesRequest) (*indexpb.IndexStatesResponse, error)
    	GetIndexFilePaths(req *indexpb.IndexFilePathsRequest) (*indexpb.IndexFilePathsResponse, error)
    	NotifyBuildIndex(nty *indexpb.BuildIndexNotification) (*commonpb.Status, error)
    }