[ruby/net-http] [DOC] Enhanced RDoc for Net::HTTP
(https://github.com/ruby/net-http/pull/116) https://github.com/ruby/net-http/commit/22c0d34002
This commit is contained in:
parent
da9ee7bcf3
commit
6db79aefec
@ -1058,6 +1058,7 @@ module Net #:nodoc:
|
|||||||
# EOF
|
# EOF
|
||||||
# headers = {'content-type': 'application/json'}
|
# headers = {'content-type': 'application/json'}
|
||||||
# http = Net::HTTP.new(hostname)
|
# http = Net::HTTP.new(hostname)
|
||||||
|
# http.write_timeout # => 60
|
||||||
# http.post(_uri.path, data, headers)
|
# http.post(_uri.path, data, headers)
|
||||||
# # => #<Net::HTTPCreated 201 Created readbody=true>
|
# # => #<Net::HTTPCreated 201 Created readbody=true>
|
||||||
# http.write_timeout = 0
|
# http.write_timeout = 0
|
||||||
@ -1068,12 +1069,15 @@ module Net #:nodoc:
|
|||||||
@write_timeout = sec
|
@write_timeout = sec
|
||||||
end
|
end
|
||||||
|
|
||||||
# Seconds to wait for 100 Continue response. If the \HTTP object does not
|
# Returns the continue timeout value.
|
||||||
# receive a response in this many seconds it sends the request body. The
|
# See Net::HTTP.continue_timeout=.
|
||||||
# default value is +nil+.
|
#
|
||||||
attr_reader :continue_timeout
|
attr_reader :continue_timeout
|
||||||
|
|
||||||
# Setter for the continue_timeout attribute.
|
# Sets the continue timeout value,
|
||||||
|
# which is the number of seconds to wait for an expected 100 Continue response.
|
||||||
|
# If the \HTTP object does not receive a response in this many seconds
|
||||||
|
# it sends the request body.
|
||||||
def continue_timeout=(sec)
|
def continue_timeout=(sec)
|
||||||
@socket.continue_timeout = sec if @socket
|
@socket.continue_timeout = sec if @socket
|
||||||
@continue_timeout = sec
|
@continue_timeout = sec
|
||||||
@ -1089,7 +1093,20 @@ module Net #:nodoc:
|
|||||||
# Content-Length headers. For backwards compatibility, the default is true.
|
# Content-Length headers. For backwards compatibility, the default is true.
|
||||||
attr_accessor :ignore_eof
|
attr_accessor :ignore_eof
|
||||||
|
|
||||||
# Returns true if the \HTTP session has been started.
|
# Returns +true+ if the \HTTP session has been started:
|
||||||
|
#
|
||||||
|
# http = Net::HTTP.new(hostname)
|
||||||
|
# http.started? # => false
|
||||||
|
# http.start
|
||||||
|
# http.started? # => true
|
||||||
|
# http.finish # => nil
|
||||||
|
# http.started? # => false
|
||||||
|
#
|
||||||
|
# Net::HTTP.start(hostname) do |http|
|
||||||
|
# http.started?
|
||||||
|
# end # => true
|
||||||
|
# http.started? # => false
|
||||||
|
#
|
||||||
def started?
|
def started?
|
||||||
@started
|
@started
|
||||||
end
|
end
|
||||||
@ -1098,15 +1115,18 @@ module Net #:nodoc:
|
|||||||
|
|
||||||
attr_accessor :close_on_empty_response
|
attr_accessor :close_on_empty_response
|
||||||
|
|
||||||
# Returns true if SSL/TLS is being used with \HTTP.
|
# Returns +true+ if +self+ uses SSL, +false+ otherwise.
|
||||||
|
# See Net::HTTP#use_ssl=.
|
||||||
def use_ssl?
|
def use_ssl?
|
||||||
@use_ssl
|
@use_ssl
|
||||||
end
|
end
|
||||||
|
|
||||||
# Turn on/off SSL.
|
# Sets whether a new session is to use
|
||||||
# This flag must be set before starting session.
|
# {Transport Layer Security}[https://en.wikipedia.org/wiki/Transport_Layer_Security]:
|
||||||
# If you change use_ssl value after session started,
|
#
|
||||||
# IOError is raised.
|
# Raises IOError if attempting to change during a session.
|
||||||
|
#
|
||||||
|
# Raises OpenSSL::SSL::SSLError if the port is not an HTTPS port.
|
||||||
def use_ssl=(flag)
|
def use_ssl=(flag)
|
||||||
flag = flag ? true : false
|
flag = flag ? true : false
|
||||||
if started? and @use_ssl != flag
|
if started? and @use_ssl != flag
|
||||||
@ -1205,7 +1225,8 @@ module Net #:nodoc:
|
|||||||
# See OpenSSL::SSL::SSLContext#verify_hostname=
|
# See OpenSSL::SSL::SSLContext#verify_hostname=
|
||||||
attr_accessor :verify_hostname
|
attr_accessor :verify_hostname
|
||||||
|
|
||||||
# Returns the X.509 certificates the server presented.
|
# The X509 certificate chain (an array of strings) for the session's socket peer,
|
||||||
|
# or +nil+ if none.
|
||||||
def peer_cert
|
def peer_cert
|
||||||
if not use_ssl? or not @socket
|
if not use_ssl? or not @socket
|
||||||
return nil
|
return nil
|
||||||
@ -1213,14 +1234,26 @@ module Net #:nodoc:
|
|||||||
@socket.io.peer_cert
|
@socket.io.peer_cert
|
||||||
end
|
end
|
||||||
|
|
||||||
# Opens a TCP connection and \HTTP session.
|
# Starts an \HTTP session.
|
||||||
#
|
#
|
||||||
# When this method is called with a block, it passes the \Net::HTTP
|
# Without a block, returns +self+:
|
||||||
# object to the block, and closes the TCP connection and \HTTP session
|
|
||||||
# after the block has been executed.
|
|
||||||
#
|
#
|
||||||
# When called with a block, it returns the return value of the
|
# http = Net::HTTP.new(hostname)
|
||||||
# block; otherwise, it returns self.
|
# # => #<Net::HTTP jsonplaceholder.typicode.com:80 open=false>
|
||||||
|
# http.start
|
||||||
|
# # => #<Net::HTTP jsonplaceholder.typicode.com:80 open=true>
|
||||||
|
# http.started? # => true
|
||||||
|
# http.finish
|
||||||
|
#
|
||||||
|
# With a block, calls the block with +self+,
|
||||||
|
# finishes the session when the block exits,
|
||||||
|
# and returns the block's value:
|
||||||
|
#
|
||||||
|
# http.start do |http|
|
||||||
|
# http
|
||||||
|
# end
|
||||||
|
# # => #<Net::HTTP jsonplaceholder.typicode.com:80 open=false>
|
||||||
|
# http.started? # => false
|
||||||
#
|
#
|
||||||
def start # :yield: http
|
def start # :yield: http
|
||||||
raise IOError, 'HTTP session already opened' if @started
|
raise IOError, 'HTTP session already opened' if @started
|
||||||
@ -1356,8 +1389,15 @@ module Net #:nodoc:
|
|||||||
end
|
end
|
||||||
private :on_connect
|
private :on_connect
|
||||||
|
|
||||||
# Finishes the \HTTP session and closes the TCP connection.
|
# Finishes the \HTTP session:
|
||||||
# Raises IOError if the session has not been started.
|
#
|
||||||
|
# http = Net::HTTP.new(hostname)
|
||||||
|
# http.start
|
||||||
|
# http.started? # => true
|
||||||
|
# http.finish # => nil
|
||||||
|
# http.started? # => false
|
||||||
|
#
|
||||||
|
# Raises IOError if not in a session.
|
||||||
def finish
|
def finish
|
||||||
raise IOError, 'HTTP session not yet started' unless started?
|
raise IOError, 'HTTP session not yet started' unless started?
|
||||||
do_finish
|
do_finish
|
||||||
|
Loading…
x
Reference in New Issue
Block a user