Sha256: 68dc45bef69d2a4dccf9e757989d51d6d94f471836adbb1609684aa7e08f63d0

Contents?: true

Size: 950 Bytes

Versions: 9

Compression:

Stored size: 950 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2018-2024, by Samuel Williams.

require_relative "connection"
require_relative "response"

require "protocol/http2/client"

module Async
	module HTTP
		module Protocol
			module HTTP2
				class Client < ::Protocol::HTTP2::Client
					include Connection
					
					def initialize(stream)
						@stream = stream
						
						framer = ::Protocol::HTTP2::Framer.new(@stream)
						
						super(framer)
					end
					
					def create_response
						Response::Stream.create(self, self.next_stream_id).response
					end
					
					# Used by the client to send requests to the remote server.
					def call(request)
						raise ::Protocol::HTTP2::Error, "Connection closed!" if self.closed?
						
						@count += 1
						
						response = create_response
						response.send_request(request)
						response.wait
						
						return response
					end
				end
			end
		end
	end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
async-http-0.82.2 lib/async/http/protocol/http2/client.rb
async-http-0.82.1 lib/async/http/protocol/http2/client.rb
async-http-0.82.0 lib/async/http/protocol/http2/client.rb
async-http-0.81.0 lib/async/http/protocol/http2/client.rb
async-http-0.80.1 lib/async/http/protocol/http2/client.rb
async-http-0.80.0 lib/async/http/protocol/http2/client.rb
async-http-0.79.0 lib/async/http/protocol/http2/client.rb
async-http-0.78.0 lib/async/http/protocol/http2/client.rb
async-http-0.77.0 lib/async/http/protocol/http2/client.rb