mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
introduce a streamManager interface for the streamsMap
This commit is contained in:
parent
e802491a8f
commit
69437a0e78
5 changed files with 343 additions and 252 deletions
|
@ -12,6 +12,18 @@ import (
|
|||
"github.com/lucas-clemente/quic-go/qerr"
|
||||
)
|
||||
|
||||
type streamManager interface {
|
||||
GetOrOpenStream(protocol.StreamID) (streamI, error)
|
||||
GetOrOpenSendStream(protocol.StreamID) (sendStreamI, error)
|
||||
GetOrOpenReceiveStream(protocol.StreamID) (receiveStreamI, error)
|
||||
OpenStream() (Stream, error)
|
||||
OpenStreamSync() (Stream, error)
|
||||
AcceptStream() (Stream, error)
|
||||
DeleteStream(protocol.StreamID) error
|
||||
UpdateLimits(*handshake.TransportParameters)
|
||||
CloseWithError(error)
|
||||
}
|
||||
|
||||
type streamsMap struct {
|
||||
mutex sync.RWMutex
|
||||
|
||||
|
@ -35,6 +47,8 @@ type streamsMap struct {
|
|||
maxOutgoingStreams uint32
|
||||
}
|
||||
|
||||
var _ streamManager = &streamsMap{}
|
||||
|
||||
type streamLambda func(streamI) (bool, error)
|
||||
type newStreamLambda func(protocol.StreamID) streamI
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue