Sha256: a2f29a43f3d87c030fd13afd005f7acb690d0acd929a2e9a5cbeed1ec68aa9aa

Contents?: true

Size: 950 Bytes

Versions: 23

Compression:

Stored size: 950 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2018-2023, 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

23 entries across 23 versions & 1 rubygems

Version Path
async-http-0.76.0 lib/async/http/protocol/http2/client.rb
async-http-0.75.0 lib/async/http/protocol/http2/client.rb
async-http-0.74.0 lib/async/http/protocol/http2/client.rb
async-http-0.73.0 lib/async/http/protocol/http2/client.rb
async-http-0.72.0 lib/async/http/protocol/http2/client.rb
async-http-0.71.0 lib/async/http/protocol/http2/client.rb
async-http-0.70.0 lib/async/http/protocol/http2/client.rb
async-http-0.69.0 lib/async/http/protocol/http2/client.rb
async-http-0.68.0 lib/async/http/protocol/http2/client.rb
async-http-0.67.1 lib/async/http/protocol/http2/client.rb
async-http-0.67.0 lib/async/http/protocol/http2/client.rb
async-http-0.66.2 lib/async/http/protocol/http2/client.rb
async-http-0.66.1 lib/async/http/protocol/http2/client.rb
async-http-0.66.0 lib/async/http/protocol/http2/client.rb
async-http-0.65.1 lib/async/http/protocol/http2/client.rb
async-http-0.65.0 lib/async/http/protocol/http2/client.rb
async-http-0.64.2 lib/async/http/protocol/http2/client.rb
async-http-0.64.1 lib/async/http/protocol/http2/client.rb
async-http-0.64.0 lib/async/http/protocol/http2/client.rb
async-http-0.63.0 lib/async/http/protocol/http2/client.rb