mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
implement a streamsMap method to range over all open streams
This commit is contained in:
parent
e087ee7e9f
commit
b4a229b72a
2 changed files with 35 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue