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.
Policy that expires in ttl_seconds from when it was created
Direct Known Subclasses
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
Methods inherited from Entry
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.
522 523 524 525 526 |
# File 'lib/puppet/environments.rb', line 522 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.
528 529 530 |
# File 'lib/puppet/environments.rb', line 528 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.
536 537 538 |
# File 'lib/puppet/environments.rb', line 536 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.
532 533 534 |
# File 'lib/puppet/environments.rb', line 532 def label "(ttl = #{@ttl_seconds} sec)" end |