mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
16 lines
341 B
Go
16 lines
341 B
Go
|
package meta
|
||
|
|
||
|
type DistributionManager struct {
|
||
|
*SegmentDistManager
|
||
|
*ChannelDistManager
|
||
|
*LeaderViewManager
|
||
|
}
|
||
|
|
||
|
func NewDistributionManager() *DistributionManager {
|
||
|
return &DistributionManager{
|
||
|
SegmentDistManager: NewSegmentDistManager(),
|
||
|
ChannelDistManager: NewChannelDistManager(),
|
||
|
LeaderViewManager: NewLeaderViewManager(),
|
||
|
}
|
||
|
}
|