class Protocol::HTTP2::ContinuationFrame


---------------------------------------------------------------
| Header Block Fragment (*) …
---------------------------------------------------------------
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.

def apply(connection)

This is only invoked if the continuation is received out of the normal flow.
def apply(connection)
	connection.receive_continuation(self)
end

def inspect

def inspect
	"\#<#{self.class} stream_id=#{@stream_id} flags=#{@flags} length=#{@length || 0}b>"
end