Internal

trait Internal[T <: Txn[T]] extends Runner[T]
trait Runner[T]
trait IControl[T]
trait Form[T]
trait ViewBase[T]
trait Disposable[T]
trait Observable[T, State]
class Object
trait Matchable
class Any

Value members

Abstract methods

def addDisposable(d: Disposable[T])(tx: T): Unit
def addMessage(m: Message)(tx: T): Unit
def completeWith(result: Try[Unit])(tx: T): Unit
def setMessages(m: List[Message])(tx: T): Unit
def setProgress(value: Double)(tx: T): Unit

Inherited methods

def dispose(tx: T): Unit
Inherited from
Disposable
def initControl(tx: T): Unit
Inherited from
IControl
Inherited from
Runner
def prepare(attr: Attr[T])(tx: T): Unit
Inherited from
Runner
Inherited from
Runner
def react(fun: T => State => 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
final def reactNow(fun: T => State => Unit)(tx: T): Disposable[T]

Like react, but also invokes the function with the current state immediately.

Like react, but also invokes the function with the current state immediately.

Inherited from
ViewBase
def run(tx: T): Unit
Inherited from
Runner
def state(tx: T): State
Inherited from
ViewBase
def stop(tx: T): Unit
Inherited from
ViewBase

Implicits

Inherited implicits

implicit val universe: Universe[T]
Inherited from
Runner