object LiftSession
- Alphabetic
- By Inheritance
- LiftSession
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- var afterSessionCreate: List[(LiftSession, Req) => Unit]
After the session is created, if you need to do anything within the context of the session (like set SessionVars, etc), add the function to this list
- def apply(request: Req): LiftSession
- def apply(session: HTTPSession, contextPath: String): LiftSession
Returns a reference to a LiftSession dictated by LiftRules#sessionCreator function.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def findSnippetClass(name: String): Box[Class[AnyRef]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- var onAboutToShutdownSession: List[(LiftSession) => Unit]
Holds user's functions that will be called when the session is about to be terminated
- var onBeginServicing: List[(LiftSession, Req) => Unit]
Holds user's functions that will be called when a stateful request is about to be processed
- var onEndServicing: List[(LiftSession, Req, Box[LiftResponse]) => Unit]
Holds user's functions that will be called when a stateful request has been processed
- var onFunctionOwnersRemoved: List[(Set[String]) => Unit]
Holds user's functions that will be called when a function owner is no longer has functions registered for callbacks.
Holds user's functions that will be called when a function owner is no longer has functions registered for callbacks.
Note that owners are typically, though not always, the render version of a page, so this is a good way to find out when a page no longer has any client-side functions (e.g., form fields) bound on the server.
- var onSessionActivate: List[(LiftSession) => Unit]
Holds user's functions that will be called when the session is activated
- var onSessionPassivate: List[(LiftSession) => Unit]
Holds user's functions that will be called when the session is passivated
- var onSetupSession: List[(LiftSession) => Unit]
Holds user's functions that will be called when the session is setup
- var onShutdownSession: List[(LiftSession) => Unit]
Holds user's functions that will be called when the session is terminated
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()