mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-02 08:55:56 +08:00
33 lines
552 B
Go
33 lines
552 B
Go
package datanode
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/datapb"
|
|
)
|
|
|
|
type Client struct {
|
|
ctx context.Context
|
|
// GOOSE TODO: add DataNodeClient
|
|
}
|
|
|
|
func (c *Client) Init() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (c *Client) Start() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (c *Client) Stop() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (c *Client) WatchDmChannels(datapb.WatchDmChannelRequest, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (c *Client) FlushSegment() (datapb.FlushSegRequest, error) {
|
|
panic("implement me")
|
|
}
|