trait Context extends AnyRef
A context contains a number of let-delimited bindings. Bindings are indexed by type Key[A] in a typesafe manner. Later bindings shadow earlier ones.
Note that the implementation of context maintains all bindings in a linked list; context lookup requires a linear search.
- Alphabetic
- By Inheritance
- Context
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- abstract type Key[A]
- case class KeyValuePair[T](key: Key[T], value: T) extends Product with Serializable
Represents an opaque type that consists of a key-value pair which can be used to set multiple keys in the context.
Abstract Value Members
- abstract def get[A](key: Key[A]): Option[A]
Retrieve the current definition of a key, but only if it is defined in the current request-local context.
- abstract def let[R](keys: Iterable[KeyValuePair[_]])(fn: => R): R
Bind multiple key-value pairs.
Bind multiple key-value pairs. Keys later in the collection take precedent over keys earlier in the collection.
- abstract def let[A, B, R](key1: Key[A], value1: A, key2: Key[B], value2: B)(fn: => R): R
Bind two keys and values in the scope of
fn
. - abstract def let[A, R](key: Key[A], value: A)(fn: => R): R
Bind
value
tokey
in the scope offn
. - abstract def letClear[R](keys: Iterable[Key[_]])(fn: => R): R
Unbind the passed-in keys, in the scope of
fn
. - abstract def letClear[R](key: Key[_])(fn: => R): R
Unbind the passed-in key, in the scope of
fn
. - abstract def letClearAll[R](fn: => R): R
Clears all bindings in the scope of
fn
.Clears all bindings in the scope of
fn
.For example:
context.let(Key1, "value1") { context.let(Key2, "something else") { context.letClearAll { // context.contains(Key1) == false // context.contains(Key2) == false } // context(Key1) == "value1" // context(Key2) == "something else" } }
Concrete 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
- def apply[A](key: Key[A]): A
Retrieve the current definition of a key.
Retrieve the current definition of a key.
- Annotations
- @throws("If the key does not exist")
- Exceptions thrown
NoSuchElementException
when the key is undefined in the current request-local context.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def contains[A](key: Key[A]): Boolean
Tells whether
key
is defined in the current request-local context. - 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])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getOrElse[A](key: Key[A], orElse: () => A): A
Retrieve the current definition of a key if it is defined.
Retrieve the current definition of a key if it is defined. If it is not defined,
orElse
is evaluated and returned. - 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()
- 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()