milvus/internal/querycoordv2/meta/dist_manager.go

16 lines
341 B
Go
Raw Normal View History

package meta
type DistributionManager struct {
*SegmentDistManager
*ChannelDistManager
*LeaderViewManager
}
func NewDistributionManager() *DistributionManager {
return &DistributionManager{
SegmentDistManager: NewSegmentDistManager(),
ChannelDistManager: NewChannelDistManager(),
LeaderViewManager: NewLeaderViewManager(),
}
}