Method: HTTPX::Connection::HTTP2#method_missing

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

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



269
270
271
272
273
274
275
# File 'lib/httpx/connection/http2.rb', line 269

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