CurrentCometActor

olon.http.CurrentCometActor
object CurrentCometActor extends ThreadGlobal[LiftCometActor]

Attributes

Graph
Supertypes
class ThreadGlobal[LiftCometActor]
class Object
trait Matchable
class Any
Self type

Members list

Value members

Inherited methods

def apply(v: LiftCometActor): ThreadGlobal[LiftCometActor]

Alias for set(v: T)

Alias for set(v: T)

Value parameters

v

the value to set.

Attributes

Inherited from:
ThreadGlobal
def box: Box[LiftCometActor]

Returns a Box containing the value of this ThreadGlobal in a null-safe fashion.

Returns a Box containing the value of this ThreadGlobal in a null-safe fashion.

Attributes

Inherited from:
ThreadGlobal
def doWith[R](x: LiftCometActor)(f: => R): R

Sets this ThreadGlobal's contents to the specified value, executes the specified function, and then restores the ThreadGlobal to its earlier value. This effectively creates a scope within the execution of the current thread for the execution of the specified function.

Sets this ThreadGlobal's contents to the specified value, executes the specified function, and then restores the ThreadGlobal to its earlier value. This effectively creates a scope within the execution of the current thread for the execution of the specified function.

Value parameters

f

the function to execute

x

the value to temporarily set in this ThreadGlobal

Attributes

Inherited from:
ThreadGlobal
def set(v: LiftCometActor): ThreadGlobal[LiftCometActor]

Sets the value of this ThreadGlobal.

Sets the value of this ThreadGlobal.

Value parameters

v

the value to set.

Attributes

Inherited from:
ThreadGlobal

Returns the current value of this variable.

Returns the current value of this variable.

Attributes

Inherited from:
ThreadGlobal