remove stream.ReadByte

This commit is contained in:
Lucas Clemente
2016-09-05 23:22:49 +02:00
parent bc54c50b7e
commit 53ae201fd2
3 changed files with 0 additions and 35 deletions

View File

@@ -7,16 +7,9 @@ import (
"github.com/lucas-clemente/quic-go/protocol"
)
// ReadStream is the read part of a QUIC stream
type ReadStream interface {
io.Reader
io.ByteReader
}
// Stream is the interface for QUIC streams
type Stream interface {
io.Reader
io.ByteReader
io.Writer
io.Closer
StreamID() protocol.StreamID