class Async::HTTP::Protocol::HTTP2::Client

def initialize(stream)

def initialize(stream)
	@stream = stream
	
	framer = ::Protocol::HTTP2::Framer.new(@stream)
	
	super(framer)
end