class HTTP2::Client

@!visibility private

This monkey-patch ensures that we send the HTTP/2 connection preface before anything else.

@see github.com/igrigorik/http-2/pull/44

Public Instance Methods

connection_management(frame) click to toggle source
Calls superclass method
# File lib/lowdown/connection.rb, line 23
def connection_management(frame)
  if @state == :waiting_connection_preface
    send_connection_preface
    connection_settings(frame)
  else
    super(frame)
  end
end