class HTTP::Retriable::Client
@see www.rubydoc.info/gems/http/HTTP/Client<br><br>Retriable version of HTTP::Client.
def branch(options)
-
(HTTP::Retriable::Client)
-
def branch(options) Retriable::Client.new(@performer, options) end
def initialize(performer, options)
-
options
(HTTP::Options, Hash
) -- -
performer
(Performer
) --
def initialize(performer, options) @performer = performer super(options) end
def perform(req, options)
- See: http://www.rubydoc.info/gems/http/HTTP/Client:perform -
def perform(req, options) @performer.perform(self, req) { super(req, options) } end