mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +08:00
15 lines
276 B
Go
15 lines
276 B
Go
package datanode
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/datapb"
|
|
)
|
|
|
|
type Interface interface {
|
|
Init() error
|
|
Start() error
|
|
Stop() error
|
|
|
|
WatchDmChannels(in *datapb.WatchDmChannelRequest) error
|
|
FlushSegments(req *datapb.FlushSegRequest) error
|
|
}
|