class HTTP2::Client
HTTP 2.0 client connection class that implements appropriate header compression / decompression algorithms and stream management logic.
Your code is responsible for driving the client object, which in turn performs all of the necessary HTTP 2.0 encoding / decoding, state management, and the rest. A simple example:
@example
socket = YourTransport.new conn = HTTP2::Client.new conn.on(:frame) {|bytes| socket << bytes } while bytes = socket.read conn << bytes end
Public Class Methods
new(**settings)
click to toggle source
Initialize new HTTP 2.0 client object.
Calls superclass method
# File lib/http/2/client.rb, line 21 def initialize(**settings) @stream_id = 1 @state = :waiting_connection_preface @local_role = :client @remote_role = :server super end
Public Instance Methods
send(frame)
click to toggle source
Send an outgoing frame. Connection
and stream flow control is managed by Connection
class.
@see Connection
@param frame [Hash]
Calls superclass method
# File lib/http/2/client.rb, line 36 def send(frame) send_connection_preface super(frame) end
send_connection_preface()
click to toggle source
Emit the connection preface if not yet
# File lib/http/2/client.rb, line 42 def send_connection_preface return unless @state == :waiting_connection_preface @state = :connected emit(:frame, CONNECTION_PREFACE_MAGIC) payload = @local_settings.select { |k, v| v != SPEC_DEFAULT_CONNECTION_SETTINGS[k] } settings(payload) end