class Async::HTTP::Protocol::HTTP2::Response

def accept_push_promise_stream(promised_stream_id, headers)

def accept_push_promise_stream(promised_stream_id, headers)
	@connection.accept_push_promise_stream(promised_stream_id) do
		promise = Promise.new(@connection, headers, promised_stream_id)
		
		self.promises.enqueue(promise)
	end
end