android13/external/grpc-grpc/tools/http2_interop/frame.go

12 lines
155 B
Go

package http2interop
import (
"io"
)
type Frame interface {
GetHeader() *FrameHeader
ParsePayload(io.Reader) error
MarshalBinary() ([]byte, error)
}