struct HTTP2::Frame::ResetStream
- HTTP2::Frame::ResetStream
- HTTP2::Frame
- Struct
- Value
- Object
Defined in:
frame/reset_stream.crConstant Summary
-
TypeCode =
3_u8
Constructors
- .new(flags : UInt8, stream_id : UInt32, payload : Bytes = Bytes.empty)
- .new(flags : Flags, stream_id : UInt32, payload : Bytes = Bytes.empty)
- .new(flags : Flags, stream_id : UInt32, payload : String)
- .new(flags : UInt8, stream_id : UInt32, payload : String)
Instance Method Summary
-
#error?
This method may be overridden to do error checking on the frame, to determine if it might be invalid in some way.
- #error_code
- #flags
- #type_code
Instance methods inherited from struct HTTP2::Frame
data
data,
error?
error?,
initialize
initialize,
payload : Bytes
payload,
stream
stream,
stream_id : UInt32
stream_id,
to_s(io)
to_s
Constructor methods inherited from struct HTTP2::Frame
from_io(io : IO) : Frame
from_io,
new
new
Constructor Detail
Instance Method Detail
def error?
#
Description copied from struct HTTP2::Frame
This method may be overridden to do error checking on the frame, to determine if it might be invalid in some way.