mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
document that CancelRead after reading the io.EOF is a no-op
This commit is contained in:
parent
870e2a63a7
commit
415f79f892
1 changed files with 1 additions and 0 deletions
|
@ -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).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue