Class: Resterl::Caches::SimpleCache::Entry

Inherits:
Struct
  • Object
show all
Defined in:
lib/resterl/caches/simple_cache.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#dataObject

Returns the value of attribute data

Returns:

  • (Object)

    the current value of data



7
8
9
# File 'lib/resterl/caches/simple_cache.rb', line 7

def data
  @data
end

#expires_atObject

Returns the value of attribute expires_at

Returns:

  • (Object)

    the current value of expires_at



7
8
9
# File 'lib/resterl/caches/simple_cache.rb', line 7

def expires_at
  @expires_at
end

Instance Method Details

#expired?Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/resterl/caches/simple_cache.rb', line 8

def expired?
  expires_at && expires_at <= Time.now
end