Class: Puppet::Environments::Cached::TTLEntry Private
- Defined in:
- lib/puppet/environments.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Time to Live eviction policy entry
Instance Attribute Summary
Attributes inherited from Entry
Instance Method Summary collapse
- #expired? ⇒ Boolean private
- #expires ⇒ Object private
-
#initialize(value, ttl_seconds) ⇒ TTLEntry
constructor
private
A new instance of TTLEntry.
- #label ⇒ Object private
Constructor Details
#initialize(value, ttl_seconds) ⇒ TTLEntry
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 TTLEntry.
488 489 490 491 492 |
# File 'lib/puppet/environments.rb', line 488 def initialize(value, ttl_seconds) super value @ttl = Time.now + ttl_seconds @ttl_seconds = ttl_seconds end |
Instance Method Details
#expired? ⇒ Boolean
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.
494 495 496 |
# File 'lib/puppet/environments.rb', line 494 def expired? Time.now > @ttl end |
#expires ⇒ Object
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.
502 503 504 |
# File 'lib/puppet/environments.rb', line 502 def expires @ttl end |
#label ⇒ Object
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.
498 499 500 |
# File 'lib/puppet/environments.rb', line 498 def label "(ttl = #{@ttl_seconds} sec)" end |