Class: LRUCache::Datum

Inherits:
Object
  • Object
show all
Defined in:
lib/lrucache.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, expiration, soft_expiration) ⇒ Datum

Returns a new instance of Datum.



116
117
118
119
120
# File 'lib/lrucache.rb', line 116

def initialize(value, expiration, soft_expiration)
  @value = value
  @expiration = expiration
  @soft_expiration = soft_expiration
end

Instance Attribute Details

#expirationObject (readonly)

Returns the value of attribute expiration.



114
115
116
# File 'lib/lrucache.rb', line 114

def expiration
  @expiration
end

#soft_expirationObject

Returns the value of attribute soft_expiration.



114
115
116
# File 'lib/lrucache.rb', line 114

def soft_expiration
  @soft_expiration
end

#valueObject (readonly)

Returns the value of attribute value.



114
115
116
# File 'lib/lrucache.rb', line 114

def value
  @value
end

Instance Method Details

#expired?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'lib/lrucache.rb', line 122

def expired?
  !@expiration.nil? && @expiration <= Time.now
end

#soft_expired?Boolean

Returns:

  • (Boolean)


126
127
128
# File 'lib/lrucache.rb', line 126

def soft_expired?
  !@soft_expiration.nil? && @soft_expiration <= Time.now
end