mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
626854cf0c
Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com> Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com>
27 lines
366 B
Go
27 lines
366 B
Go
package session
|
|
|
|
type stats struct {
|
|
segmentCnt int
|
|
channelCnt int
|
|
}
|
|
|
|
func (s *stats) setSegmentCnt(cnt int) {
|
|
s.segmentCnt = cnt
|
|
}
|
|
|
|
func (s *stats) getSegmentCnt() int {
|
|
return s.segmentCnt
|
|
}
|
|
|
|
func (s *stats) setChannelCnt(cnt int) {
|
|
s.channelCnt = cnt
|
|
}
|
|
|
|
func (s *stats) getChannelCnt() int {
|
|
return s.channelCnt
|
|
}
|
|
|
|
func newStats() stats {
|
|
return stats{}
|
|
}
|