mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-08 04:14:29 +08:00
add size()
This commit is contained in:
@@ -50,3 +50,10 @@ func (p *LocalPartitionPublishers) IsEmpty() bool {
|
||||
|
||||
return len(p.publishers) == 0
|
||||
}
|
||||
|
||||
func (p *LocalPartitionPublishers) Size() int {
|
||||
p.publishersLock.RLock()
|
||||
defer p.publishersLock.RUnlock()
|
||||
|
||||
return len(p.publishers)
|
||||
}
|
||||
|
@@ -54,3 +54,10 @@ func (p *LocalPartitionSubscribers) IsEmpty() bool {
|
||||
|
||||
return len(p.Subscribers) == 0
|
||||
}
|
||||
|
||||
func (p *LocalPartitionSubscribers) Size() int {
|
||||
p.SubscribersLock.RLock()
|
||||
defer p.SubscribersLock.RUnlock()
|
||||
|
||||
return len(p.Subscribers)
|
||||
}
|
||||
|
Reference in New Issue
Block a user