document that CancelRead after reading the io.EOF is a no-op

This commit is contained in:
Marten Seemann 2019-01-24 09:17:33 +07:00
parent 870e2a63a7
commit 415f79f892

View file

@ -57,6 +57,7 @@ type Stream interface {
// CancelRead aborts receiving on this stream.
// It will ask the peer to stop transmitting stream data.
// Read will unblock immediately, and future Read calls will fail.
// When called multiple times or after reading the io.EOF it is a no-op.
CancelRead(ErrorCode) error
// The context is canceled as soon as the write-side of the stream is closed.
// This happens when Close() is called, or when the stream is reset (either locally or remotely).