SessionRepository

org.pac4j.http4s.SessionRepository
trait SessionRepository[F[_]]

Repository trait for customizing Http4sGenericSessionStore.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def deleteSession(id: String): F[Boolean]
def get(id: String): F[Option[Map[String, AnyRef]]]
def remove(id: String, key: String): F[Unit]
def set(id: String, key: String, value: AnyRef): F[Unit]
def update(id: String, session: Map[String, AnyRef]): F[Unit]