Class: PuppetLibrary::Http::Cache::InMemory::Entry

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet_library/http/cache/in_memory.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#valueObject

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

#ageObject



62
63
64
# File 'lib/puppet_library/http/cache/in_memory.rb', line 62

def age
    Time.now - @birth
end