class Protocol::HTTP2::ContinuationFrame
The CONTINUATION frame is used to continue a sequence of header block fragments. Any number of CONTINUATION frames can be sent, as long as the preceding frame is on the same stream and is a HEADERS, PUSH_PROMISE, or CONTINUATION frame without the END_HEADERS flag set.
---------------------------------------------------------------
| Header Block Fragment (*) … ---------------------------------------------------------------
Constants
- TYPE
Public Instance Methods
apply(connection)
click to toggle source
This is only invoked if the continuation is received out of the normal flow.
# File lib/protocol/http2/continuation_frame.rb, line 110 def apply(connection) connection.receive_continuation(self) end
inspect()
click to toggle source
# File lib/protocol/http2/continuation_frame.rb, line 114 def inspect "\#<#{self.class} stream_id=#{@stream_id} flags=#{@flags} #{@length}b>" end