Class: PuppetLibrary::Http::Cache::InMemory::Entry
- Inherits:
-
Object
- Object
- PuppetLibrary::Http::Cache::InMemory::Entry
- Defined in:
- lib/puppet_library/http/cache/in_memory.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #age ⇒ Object
-
#initialize(value) ⇒ Entry
constructor
A new instance of Entry.
Constructor Details
#initialize(value) ⇒ Entry
Returns a new instance of Entry.
57 58 59 60 |
# File 'lib/puppet_library/http/cache/in_memory.rb', line 57 def initialize(value) @birth = Time.now @value = value end |
Instance Attribute Details
#value ⇒ Object
Returns the value of attribute value.
55 56 57 |
# File 'lib/puppet_library/http/cache/in_memory.rb', line 55 def value @value end |
Instance Method Details
#age ⇒ Object
62 63 64 |
# File 'lib/puppet_library/http/cache/in_memory.rb', line 62 def age Time.now - @birth end |