Class: GraphQL::FragmentCache::MemoryStore::Entry
- Inherits:
-
Struct
- Object
- Struct
- GraphQL::FragmentCache::MemoryStore::Entry
- Defined in:
- lib/graphql/fragment_cache/memory_store.rb
Instance Attribute Summary collapse
-
#expires_at ⇒ Object
Returns the value of attribute expires_at.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
Instance Attribute Details
#expires_at ⇒ Object
Returns the value of attribute expires_at
7 8 9 |
# File 'lib/graphql/fragment_cache/memory_store.rb', line 7 def expires_at @expires_at end |
#value ⇒ Object
Returns the value of attribute value
7 8 9 |
# File 'lib/graphql/fragment_cache/memory_store.rb', line 7 def value @value end |
Instance Method Details
#expired? ⇒ Boolean
8 9 10 |
# File 'lib/graphql/fragment_cache/memory_store.rb', line 8 def expired? expires_at && expires_at < Time.now end |