add a method to the session that blocks until it is closed

This commit is contained in:
Marten Seemann 2017-06-15 19:11:22 +02:00
parent 95c3db90a8
commit cd02cc8f0f
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
5 changed files with 24 additions and 0 deletions

View file

@ -37,6 +37,9 @@ type Session interface {
RemoteAddr() net.Addr
// Close closes the connection. The error will be sent to the remote peer in a CONNECTION_CLOSE frame. An error value of nil is allowed and will cause a normal PeerGoingAway to be sent.
Close(error) error
// WaitUntilClosed() blocks until the session is closed.
// Warning: This API should not be considered stable and might change soon.
WaitUntilClosed()
}
// A NonFWSession is a QUIC connection between two peers half-way through the handshake.