All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalatra.guavaCache.Entry.scala Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
package org.scalatra.guavaCache

import org.joda.time.DateTime

case class Entry[+A](value: A, expiresAt: Option[DateTime]) {
  def isExpired: Boolean = expiresAt.exists(_.isBeforeNow)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy