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
settings_header(**settings) click to toggle source
# File lib/http/2/client.rb, line 63
def self.settings_header(**settings)
  frame = Framer.new.generate(type: :settings, stream: 0, payload: settings)
  Base64.urlsafe_encode64(frame[9..-1])
end

Public Instance Methods

receive(frame) click to toggle source
Calls superclass method
# File lib/http/2/client.rb, line 41
def receive(frame)
  send_connection_preface
  super(frame)
end
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 54
def send_connection_preface
  return unless @state == :waiting_connection_preface
  @state = :connected
  emit(:frame, CONNECTION_PREFACE_MAGIC)

  payload = @local_settings.reject { |k, v| v == SPEC_DEFAULT_CONNECTION_SETTINGS[k] }
  settings(payload)
end
upgrade() click to toggle source

sends the preface and initializes the first stream in half-closed state

# File lib/http/2/client.rb, line 47
def upgrade
  fail ProtocolError unless @stream_id == 1
  send_connection_preface
  new_stream(state: :half_closed_local)
end