mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
remove the error return value from Stream.CancelWrite
This commit is contained in:
parent
ca939df44e
commit
3372fa794c
7 changed files with 24 additions and 32 deletions
|
@ -53,7 +53,7 @@ type Stream interface {
|
|||
// Data already written, but not yet delivered to the peer is not guaranteed to be delivered reliably.
|
||||
// Write will unblock immediately, and future calls to Write will fail.
|
||||
// When called multiple times or after closing the stream it is a no-op.
|
||||
CancelWrite(ErrorCode) error
|
||||
CancelWrite(ErrorCode)
|
||||
// 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.
|
||||
|
@ -100,7 +100,7 @@ type SendStream interface {
|
|||
// see Stream.Close
|
||||
io.Closer
|
||||
// see Stream.CancelWrite
|
||||
CancelWrite(ErrorCode) error
|
||||
CancelWrite(ErrorCode)
|
||||
// see Stream.Context
|
||||
Context() context.Context
|
||||
// see Stream.SetWriteDeadline
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue