Method: HTTPX::Connection::HTTP2#method_missing

Defined in:
lib/httpx/connection/http2.rb

#method_missing(meth, *args, &blk) ⇒ Object (private)



285
286
287
288
289
290
291
# File 'lib/httpx/connection/http2.rb', line 285

def method_missing(meth, *args, &blk)
  if @connection.respond_to?(meth)
    @connection.__send__(meth, *args, &blk)
  else
    super
  end
end