Sha256: 93968f64f38db1e17cb3282cfc205592eb74c5f37d6fb5cf7d2ac9bacd47b2eb
Contents?: true
Size: 712 Bytes
Versions: 273
Compression:
Stored size: 712 Bytes
Contents
## # A Net::HTTP connection wrapper that holds extra information for managing the # connection's lifetime. class Bundler::Persistent::Net::HTTP::Persistent::Connection # :nodoc: attr_accessor :http attr_accessor :last_use attr_accessor :requests attr_accessor :ssl_generation def initialize http_class, http_args, ssl_generation @http = http_class.new(*http_args) @ssl_generation = ssl_generation reset end def finish @http.finish rescue IOError ensure reset end def reset @last_use = Bundler::Persistent::Net::HTTP::Persistent::EPOCH @requests = 0 end def ressl ssl_generation @ssl_generation = ssl_generation finish end end
Version data entries
273 entries across 273 versions & 6 rubygems