ExpiringCache

com.ocadotechnology.sttp.oauth2.cache.ExpiringCache
trait ExpiringCache[F[_], K, V]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def get(key: K): F[Option[V]]
def put(key: K, value: V, expirationTime: Instant): F[Unit]
def remove(key: K): F[Unit]