mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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
|
@ -25,7 +25,7 @@ var _ = Describe("Crypto Stream", func() {
|
|||
})
|
||||
|
||||
It("says if it has data for writing", func() {
|
||||
mockSender.EXPECT().scheduleSending()
|
||||
mockSender.EXPECT().onHasStreamData(str.version.CryptoStreamID())
|
||||
Expect(str.hasDataForWriting()).To(BeFalse())
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue