Protocol::HTTP2SourceProtocolHTTP2ContinuationFrame

class 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 (*) ... +---------------------------------------------------------------+

Definitions

def apply(connection)

This is only invoked if the continuation is received out of the normal flow.

Implementation

def apply(connection)
	connection.receive_continuation(self)
end