Class: MatrixSdk::Util::TinycacheAdapter::Value
- Defined in:
- lib/matrix_sdk/util/tinycache_adapter.rb
Instance Method Summary collapse
Instance Method Details
#expired? ⇒ Boolean
72 73 74 75 76 |
# File 'lib/matrix_sdk/util/tinycache_adapter.rb', line 72 def expired? return false if expires_at.nil? Time.now > expires_at end |