com.sksamuel.scruffy.session.redis

RedisSessionManager

Related Doc: package redis

class RedisSessionManager extends SessionManager

Linear Supertypes
SessionManager, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RedisSessionManager
  2. SessionManager
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisSessionManager(hostname: String, port: Int)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. implicit val akkaSystem: ActorSystem

    Attributes
    protected
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def create(id: String)(implicit executor: ExecutionContext): Future[Session]

    Definition Classes
    RedisSessionManager → SessionManager
  8. def create(implicit executor: ExecutionContext): Future[Session]

    Definition Classes
    RedisSessionManager → SessionManager
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def exists(id: String)(implicit executor: ExecutionContext): Future[Boolean]

    Definition Classes
    SessionManager
  12. def expire(id: String)(implicit executor: ExecutionContext): Future[Unit]

    Mark the given session as expired and remove it from the underlying implementation.

    Mark the given session as expired and remove it from the underlying implementation. If the session does not exist or has already expired, then this is a no-op.

    Definition Classes
    RedisSessionManager → SessionManager
  13. def expire(session: Session)(implicit executor: ExecutionContext): Future[Unit]

    Definition Classes
    SessionManager
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def generateId: String

    Definition Classes
    SessionManager
  16. def get(id: String)(implicit executor: ExecutionContext): Future[Option[Session]]

    Returns a session or None for the given session id.

    Returns a session or None for the given session id.

    Definition Classes
    RedisSessionManager → SessionManager
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def getOrCreate(id: String)(implicit executor: ExecutionContext): Future[Session]

    Definition Classes
    SessionManager
  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. val redis: RedisClient

    Attributes
    protected
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. def update(session: Session)(implicit executor: ExecutionContext): Future[Session]

    Persists the given session.

    Persists the given session.

    Definition Classes
    RedisSessionManager → SessionManager
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SessionManager

Inherited from AnyRef

Inherited from Any

Ungrouped