ControlValuesView

trait ControlValuesView[T <: Txn[T]] extends Observable[T, Option[ControlValues]] with Source[T, Option[ControlValues]]
trait Source[T, Option[ControlValues]]
trait Observable[T, Option[ControlValues]]
class Object
trait Matchable
class Any

Value members

Inherited methods

def apply(tx: T): Option[ControlValues]
Inherited from
Source
def react(fun: T => Option[ControlValues] => Unit)(tx: T): Disposable[T]

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Inherited from
Observable