Method: Http2::PostRequest#execute

Defined in:
lib/http2/post_request.rb

#executeObject



13
14
15
16
17
18
19
20
21
22
# File 'lib/http2/post_request.rb', line 13

def execute
  @data = raw_data

  @http2.mutex.synchronize do
    puts "Http2: Doing post." if @debug

    @conn.write(headers_string)
    return @http2.read_response(self, @args)
  end
end