use round-robin scheduling in StreamFramer

fixes #207
This commit is contained in:
Marten Seemann 2016-08-06 17:01:28 +07:00
parent 8e7215aaeb
commit 71dcad29b5
2 changed files with 14 additions and 1 deletions

View file

@ -125,7 +125,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
return true, nil
}
f.streamsMap.Iterate(fn)
f.streamsMap.RoundRobinIterate(fn)
return
}