implement a streamsMap method to range over all open streams

This commit is contained in:
Marten Seemann 2017-10-17 20:56:56 +07:00
parent e087ee7e9f
commit b4a229b72a
2 changed files with 35 additions and 0 deletions

View file

@ -311,6 +311,18 @@ func (m *streamsMap) RoundRobinIterate(fn streamLambda) error {
return nil
}
// Range executes a callback for all streams, in pseudo-random order
func (m *streamsMap) Range(cb func(s *stream)) {
m.mutex.RLock()
defer m.mutex.RUnlock()
for _, s := range m.streams {
if s != nil {
cb(s)
}
}
}
func (m *streamsMap) iterateFunc(streamID protocol.StreamID, fn streamLambda) (bool, error) {
str, ok := m.streams[streamID]
if !ok {