pass an error code to Session.CloseWithError

This commit is contained in:
Marten Seemann 2018-07-04 17:47:10 +07:00
parent 8b2992a243
commit 6d3d6dc47d
7 changed files with 27 additions and 22 deletions

View file

@ -148,7 +148,8 @@ type Session interface {
// Close the connection.
io.Closer
// Close the connection with an error.
CloseWithError(error) error
// The error must not be nil.
CloseWithError(ErrorCode, error) error
// The context is cancelled when the session is closed.
// Warning: This API should not be considered stable and might change soon.
Context() context.Context