()
| 76 | } |
| 77 | |
| 78 | func (self *SessionList) GetSessionCount() int { |
| 79 | self.RLock() |
| 80 | defer self.RUnlock() |
| 81 | return len(self.mapOnlineList) |
| 82 | } |
| 83 | |
| 84 | func (self *SessionList) ForEachSession(visit func(*Session)) { |
| 85 | self.RLock() |
no outgoing calls
no test coverage detected