org.scalatra.guavaCache.Entry.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-cache-guava_2.11 Show documentation
Show all versions of scalatra-cache-guava_2.11 Show documentation
Scalatra Cache integration with Google Guava
package org.scalatra.guavaCache
import org.joda.time.DateTime
case class Entry[+A](value: A, expiresAt: Option[DateTime]) {
def isExpired: Boolean = expiresAt.exists(_.isBeforeNow)
}