mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
pass a callback containing the callbacks to the stream
This commit is contained in:
parent
44cff87e53
commit
fc8fafd15e
12 changed files with 218 additions and 165 deletions
13
stream.go
13
stream.go
|
@ -14,6 +14,12 @@ const (
|
|||
errorCodeStoppingGQUIC protocol.ApplicationErrorCode = 7
|
||||
)
|
||||
|
||||
// The streamSender is notified by the stream about various events.
|
||||
type streamSender interface {
|
||||
scheduleSending()
|
||||
queueControlFrame(wire.Frame)
|
||||
}
|
||||
|
||||
type streamI interface {
|
||||
Stream
|
||||
|
||||
|
@ -61,14 +67,13 @@ var _ StreamError = &streamCanceledError{}
|
|||
|
||||
// newStream creates a new Stream
|
||||
func newStream(streamID protocol.StreamID,
|
||||
onData func(),
|
||||
queueControlFrame func(wire.Frame),
|
||||
sender streamSender,
|
||||
flowController flowcontrol.StreamFlowController,
|
||||
version protocol.VersionNumber,
|
||||
) *stream {
|
||||
return &stream{
|
||||
sendStream: *newSendStream(streamID, onData, queueControlFrame, flowController, version),
|
||||
receiveStream: *newReceiveStream(streamID, onData, queueControlFrame, flowController),
|
||||
sendStream: *newSendStream(streamID, sender, flowController, version),
|
||||
receiveStream: *newReceiveStream(streamID, sender, flowController),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue