Method: Puppet::HTTP::PoolEntry#initialize

Defined in:
lib/puppet/http/pool_entry.rb

#initialize(connection, verifier, expiration_time) ⇒ PoolEntry

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of PoolEntry.



10
11
12
13
14
# File 'lib/puppet/http/pool_entry.rb', line 10

def initialize(connection, verifier, expiration_time)
  @connection = connection
  @verifier = verifier
  @expiration_time = expiration_time
end