mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
rename the scheduleSending callback to onHasStreamData in the stream
This callback also takes the stream ID, which will later be used to create a queue of streams that have data for writing available.
This commit is contained in:
parent
bd60e996dc
commit
a5d3eaea61
8 changed files with 45 additions and 41 deletions
|
@ -16,9 +16,9 @@ const (
|
|||
|
||||
// The streamSender is notified by the stream about various events.
|
||||
type streamSender interface {
|
||||
scheduleSending()
|
||||
queueControlFrame(wire.Frame)
|
||||
onHasWindowUpdate(protocol.StreamID)
|
||||
onHasStreamData(protocol.StreamID)
|
||||
}
|
||||
|
||||
type streamI interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue