introduce a streamManager interface for the streamsMap

This commit is contained in:
Marten Seemann 2018-01-04 09:38:36 +07:00
parent e802491a8f
commit 69437a0e78
5 changed files with 343 additions and 252 deletions

View file

@ -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